diff --git a/AUTHORS b/AUTHORS index 1cbb20137..b7636c4d2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -38,6 +38,7 @@ Other contributors, listed alphabetically, are: * Zac Hatfield-Dodds -- doctest reporting improvements * Doug Hellmann -- graphviz improvements * Tim Hoffmann -- theme improvements +* Antti Kaihola -- doctest extension (skipif option) * Dave Kuhlman -- original LaTeX writer * Blaise Laflamme -- pyramid theme * Chris Lamb -- reproducibility fixes diff --git a/CHANGES b/CHANGES index 1658a8cc5..f7e7884bc 100644 --- a/CHANGES +++ b/CHANGES @@ -15,6 +15,12 @@ Incompatible changes Deprecated ---------- +* ``sphinx.ext.doctest.doctest_encode()`` +* ``sphinx.testing.util.remove_unicode_literal()`` + +For more details, see `deprecation APIs list +`_ + Features added -------------- * #1618: The search results preview of generated HTML documentation is @@ -36,8 +42,8 @@ Bugs fixed Testing -------- -Release 1.8.0 beta2 (in development) -==================================== +Release 1.8.2 (in development) +============================== Dependencies ------------ @@ -45,60 +51,72 @@ Dependencies Incompatible changes -------------------- +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + +Release 1.8.1 (released Sep 22, 2018) +===================================== + +Incompatible changes +-------------------- + +* LaTeX ``\pagestyle`` commands have been moved to the LaTeX template. No + changes in PDF, except possibly if ``\sphinxtableofcontents``, which + contained them, had been customized in :file:`conf.py`. (refs: #5455) + +Bugs fixed +---------- + +* #5418: Incorrect default path for sphinx-build -d/doctrees files +* #5421: autodoc emits deprecation warning for :confval:`autodoc_default_flags` +* #5422: lambda object causes PicklingError on storing environment +* #5417: Sphinx fails to build with syntax error in Python 2.7.5 +* #4911: add latexpdf to make.bat for non make-mode +* #5436: Autodoc does not work with enum subclasses with properties/methods +* #5437: autodoc: crashed on modules importing eggs +* #5433: latex: ImportError: cannot import name 'DEFAULT_SETTINGS' +* #5431: autodoc: ``autofunction`` emits a warning for callable objects +* #5457: Fix TypeError in error message when override is prohibited +* #5453: PDF builds of 'howto' documents have no page numbers +* #5463: mathbase: math_role and MathDirective was disappeared in 1.8.0 +* #5454: latex: Index has disappeared from PDF for Japanese documents +* #5432: py domain: ``:type:`` field can't process ``:term:`` references +* #5426: py domain: TypeError has been raised for class attribute + +Release 1.8.0 (released Sep 13, 2018) +===================================== + +Dependencies +------------ + +1.8.0b1 + +* LaTeX: :confval:`latex_use_xindy`, if ``True`` (default for + ``xelatex/lualatex``), instructs ``make latexpdf`` to use :program:`xindy` + for general index. Make sure your LaTeX distribution includes it. + (refs: #5134) +* LaTeX: ``latexmk`` is required for ``make latexpdf`` on Windows + +Incompatible changes +-------------------- + +1.8.0b2 + * #5282: html theme: refer ``pygments_style`` settings of HTML themes preferentially * The URL of download files are changed * #5127: quickstart: ``Makefile`` and ``make.bat`` are not overwritten if exists -Deprecated ----------- - -* ``sphinx.io.SphinxI18nReader.set_lineno_for_reporter()`` is deprecated -* ``sphinx.io.SphinxI18nReader.line`` is deprecated -* ``sphinx.util.i18n.find_catalog_source_file()`` has changed; the - *gettext_compact* argument has been deprecated - -Features added --------------- - -* #5388: Ensure frozen object descriptions are reproducible -* #5362: apidoc: Add ``--tocfile`` option to change the filename of ToC - -Bugs fixed ----------- - -* html: search box overrides to other elements if scrolled -* i18n: warnings for translation catalogs have wrong line numbers (refs: #5321) -* #5325: latex: cross references has been broken by multiply labeled objects -* C++, fixes for symbol addition and lookup. Lookup should no longer break - in partial builds. See also #5337. -* #5348: download reference to remote file is not displayed -* #5282: html theme: ``pygments_style`` of theme was overrided by ``conf.py`` - by default -* #4379: toctree shows confusible warning when document is excluded -* #2401: autodoc: ``:members:`` causes ``:special-members:`` not to be shown -* autodoc: ImportError is replaced by AttributeError for deeper module -* #2720, #4034: Incorrect links with ``:download:``, duplicate names, and - parallel builds -* #5290: autodoc: failed to analyze source code in egg package -* #5399: Sphinx crashes if unknown po file exists - -Testing --------- - -Release 1.8.0 beta1 (in development) -==================================== - -Dependencies ------------- - -* LaTeX: :confval:`latex_use_xindy`, if ``True`` (default for - ``xelatex/lualatex``), instructs ``make latexpdf`` to use :program:`xindy` - for general index. Make sure your LaTeX distribution includes it. - (refs: #5134) - -Incompatible changes --------------------- +1.8.0b1 * #5156: the :py:mod:`sphinx.ext.graphviz: extension runs `dot` in the directory of the document being built instead of in the root directory of @@ -152,6 +170,17 @@ Incompatible changes Deprecated ---------- +1.8.0b2 + +* ``sphinx.io.SphinxI18nReader.set_lineno_for_reporter()`` is deprecated +* ``sphinx.io.SphinxI18nReader.line`` is deprecated +* ``sphinx.util.i18n.find_catalog_source_file()`` has changed; the + *gettext_compact* argument has been deprecated +* #5403: ``sphinx.util.images.guess_mimetype()`` has changed; the *content* + argument has been deprecated + +1.8.0b1 + * :confval:`source_parsers` is deprecated * :confval:`autodoc_default_flags` is deprecated * quickstart: ``--epub`` option becomes default, so it is deprecated @@ -217,6 +246,8 @@ Deprecated * ``sphinx.ext.mathbase.eqref`` node is deprecated * ``sphinx.ext.mathbase.is_in_section_title()`` is deprecated * ``sphinx.ext.mathbase.MathDomain`` is deprecated +* ``sphinx.ext.mathbase.MathDirective`` is deprecated +* ``sphinx.ext.mathbase.math_role`` is deprecated * ``sphinx.ext.mathbase.setup_math()`` is deprecated * ``sphinx.directives.other.VersionChanges`` is deprecated * ``sphinx.highlighting.PygmentsBridge.unhighlight()`` is deprecated @@ -231,6 +262,13 @@ For more details, see `deprecation APIs list Features added -------------- +1.8.0b2 + +* #5388: Ensure frozen object descriptions are reproducible +* #5362: apidoc: Add ``--tocfile`` option to change the filename of ToC + +1.8.0b1 + * Add :event:`config-inited` event * Add ``sphinx.config.Any`` to represent the config value accepts any type of value @@ -305,6 +343,26 @@ Features added Bugs fixed ---------- +1.8.0b2 + +* html: search box overrides to other elements if scrolled +* i18n: warnings for translation catalogs have wrong line numbers (refs: #5321) +* #5325: latex: cross references has been broken by multiply labeled objects +* C++, fixes for symbol addition and lookup. Lookup should no longer break + in partial builds. See also #5337. +* #5348: download reference to remote file is not displayed +* #5282: html theme: ``pygments_style`` of theme was overrided by ``conf.py`` + by default +* #4379: toctree shows confusible warning when document is excluded +* #2401: autodoc: ``:members:`` causes ``:special-members:`` not to be shown +* autodoc: ImportError is replaced by AttributeError for deeper module +* #2720, #4034: Incorrect links with ``:download:``, duplicate names, and + parallel builds +* #5290: autodoc: failed to analyze source code in egg package +* #5399: Sphinx crashes if unknown po file exists + +1.8.0b1 + * i18n: message catalogs were reset on each initialization * #4850: latex: footnote inside footnote was not rendered * #4945: i18n: fix lang_COUNTRY not fallback correctly for IndexBuilder. Thanks @@ -321,17 +379,18 @@ Bugs fixed * C++, parse delete expressions and basic new expressions as well. * #5002: graphviz: SVGs do not adapt to the column width -Testing --------- - Features removed ---------------- +1.8.0b1 + * ``sphinx.ext.pngmath`` extension Documentation ------------- +1.8.0b1 + * #5083: Fix wrong make.bat option for internationalization. * #5115: napoleon: add admonitions added by #4613 to the docs. diff --git a/README.rst b/README.rst index 9d9ffba6e..5a566c300 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ .. image:: https://img.shields.io/pypi/v/sphinx.svg :target: https://pypi.org/project/Sphinx/ - :alt: Package on PyPi + :alt: Package on PyPI .. image:: https://readthedocs.org/projects/sphinx/badge/?version=master :target: http://www.sphinx-doc.org/ diff --git a/doc/conf.py b/doc/conf.py index 724d355d0..e06d70150 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -144,3 +144,10 @@ def setup(app): names=['param'], can_collapse=True) app.add_object_type('event', 'event', 'pair: %s; event', parse_event, doc_field_types=[fdesc]) + + # workaround for RTD + from sphinx.util import logging + logger = logging.getLogger(__name__) + app.info = lambda *args, **kwargs: logger.info(*args, **kwargs) + app.warn = lambda *args, **kwargs: logger.warning(*args, **kwargs) + app.debug = lambda *args, **kwargs: logger.debug(*args, **kwargs) diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst index 6af027dd8..cf7e902cf 100644 --- a/doc/extdev/index.rst +++ b/doc/extdev/index.rst @@ -116,6 +116,16 @@ The following is a list of deprecated interface. - (will be) Removed - Alternatives + * - ``sphinx.ext.doctest.doctest_encode()`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.testing.util.remove_unicode_literal()`` + - 2.0 + - 4.0 + - N/A + * - :rst:dir:`highlightlang` - 1.8 - 4.0 @@ -136,6 +146,11 @@ The following is a list of deprecated interface. - 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 @@ -178,6 +193,16 @@ The following is a list of deprecated interface. - 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 diff --git a/sphinx/builders/applehelp.py b/sphinx/builders/applehelp.py index 79d57210c..56e9bd6c0 100644 --- a/sphinx/builders/applehelp.py +++ b/sphinx/builders/applehelp.py @@ -10,7 +10,6 @@ """ from __future__ import print_function -import codecs import pipes import plistlib import shlex @@ -193,7 +192,7 @@ class AppleHelpBuilder(StandaloneHTMLBuilder): # Build the access page logger.info(bold(__('building access page...')), nonl=True) - with codecs.open(path.join(language_dir, '_access.html'), 'w') as f: # type: ignore + with open(path.join(language_dir, '_access.html'), 'w') as f: f.write(access_page_template % { 'toc': htmlescape(toc, quote=True), 'title': htmlescape(self.config.applehelp_title) diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py index 3f9bffa0d..888a011da 100644 --- a/sphinx/builders/changes.py +++ b/sphinx/builders/changes.py @@ -9,12 +9,9 @@ :license: BSD, see LICENSE for details. """ -import codecs from os import path from typing import cast -from six import iteritems - from sphinx import package_dir from sphinx.builders import Builder from sphinx.domains.changeset import ChangeSetDomain @@ -109,15 +106,17 @@ class ChangesBuilder(Builder): 'version': version, 'docstitle': self.config.html_title, 'shorttitle': self.config.html_short_title, - 'libchanges': sorted(iteritems(libchanges)), + 'libchanges': sorted(libchanges.items()), 'apichanges': sorted(apichanges), - 'otherchanges': sorted(iteritems(otherchanges)), + 'otherchanges': sorted(otherchanges.items()), 'show_copyright': self.config.html_show_copyright, 'show_sphinx': self.config.html_show_sphinx, } - with codecs.open(path.join(self.outdir, 'index.html'), 'w', 'utf8') as f: # type: ignore # NOQA + with open(path.join(self.outdir, 'index.html'), 'w', # type: ignore + encoding='utf8') as f: f.write(self.templates.render('changes/frameset.html', ctx)) - with codecs.open(path.join(self.outdir, 'changes.html'), 'w', 'utf8') as f: # type: ignore # NOQA + with open(path.join(self.outdir, 'changes.html'), 'w', # type: ignore + encoding='utf8') as f: f.write(self.templates.render('changes/versionchanges.html', ctx)) hltext = ['.. versionadded:: %s' % version, @@ -135,8 +134,8 @@ class ChangesBuilder(Builder): logger.info(bold(__('copying source files...'))) for docname in self.env.all_docs: - with codecs.open(self.env.doc2path(docname), 'r', # type: ignore - self.env.config.source_encoding) as f: + with open(self.env.doc2path(docname), 'r', # type: ignore + encoding=self.env.config.source_encoding) as f: try: lines = f.readlines() except UnicodeDecodeError: @@ -144,7 +143,7 @@ class ChangesBuilder(Builder): continue targetfn = path.join(self.outdir, 'rst', os_path(docname)) + '.html' ensuredir(path.dirname(targetfn)) - with codecs.open(targetfn, 'w', 'utf-8') as f: # type: ignore + with open(targetfn, 'w', encoding='utf-8') as f: # type: ignore text = ''.join(hl(i + 1, line) for (i, line) in enumerate(lines)) ctx = { 'filename': self.env.doc2path(docname, None), @@ -152,7 +151,7 @@ class ChangesBuilder(Builder): } f.write(self.templates.render('changes/rstsource.html', ctx)) themectx = dict(('theme_' + key, val) for (key, val) in - iteritems(self.theme.get_options({}))) + 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/gettext.py b/sphinx/builders/gettext.py index 508301f79..b95b4819f 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -18,7 +18,7 @@ from os import path, walk, getenv from time import time from uuid import uuid4 -from six import iteritems, StringIO +from six import StringIO from sphinx.builders import Builder from sphinx.domains.python import pairindextypes @@ -268,7 +268,7 @@ class MessageCatalogBuilder(I18nBuilder): ctime = datetime.fromtimestamp( timestamp, ltz).strftime('%Y-%m-%d %H:%M%z'), ) - for textdomain, catalog in status_iterator(iteritems(self.catalogs), # type: ignore + for textdomain, catalog in status_iterator(self.catalogs.items(), # type: ignore __("writing message catalogs... "), "darkgreen", len(self.catalogs), self.app.verbosity, diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index 830c2cce3..756833042 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -9,7 +9,6 @@ :license: BSD, see LICENSE for details. """ -import codecs import posixpath import re import sys @@ -25,7 +24,7 @@ from docutils.frontend import OptionParser from docutils.io import DocTreeInput, StringOutput from docutils.readers.doctree import Reader as DoctreeReader from docutils.utils import relative_path -from six import iteritems, text_type, string_types +from six import text_type, string_types from six.moves import cPickle as pickle from sphinx import package_dir, __display_version__ @@ -589,7 +588,7 @@ class StandaloneHTMLBuilder(Builder): if self.theme: self.globalcontext.update( ('theme_' + key, val) for (key, val) in - iteritems(self.theme.get_options(self.theme_options))) + self.theme.get_options(self.theme_options).items()) self.globalcontext.update(self.config.html_context) def get_doc_context(self, docname, body, metatags): @@ -959,9 +958,9 @@ class StandaloneHTMLBuilder(Builder): try: searchindexfn = path.join(self.outdir, self.searchindex_filename) if self.indexer_dumps_unicode: - f = codecs.open(searchindexfn, 'r', encoding='utf-8') # type: ignore + f = open(searchindexfn, 'r', encoding='utf-8') # type: ignore else: - f = open(searchindexfn, 'rb') # type: ignore + f = open(searchindexfn, 'rb') with f: self.indexer.load(f, self.indexer_format) except (IOError, OSError, ValueError): @@ -1023,7 +1022,7 @@ class StandaloneHTMLBuilder(Builder): # user sidebar settings html_sidebars = self.get_builder_config('sidebars', 'html') - for pattern, patsidebars in iteritems(html_sidebars): + for pattern, patsidebars in html_sidebars.items(): if patmatch(pagename, pattern): if matched: if has_wildcard(pattern): @@ -1140,7 +1139,8 @@ class StandaloneHTMLBuilder(Builder): # outfilename's path is in general different from self.outdir ensuredir(path.dirname(outfilename)) try: - with codecs.open(outfilename, 'w', ctx['encoding'], 'xmlcharrefreplace') as f: # type: ignore # NOQA + with open(outfilename, 'w', # type: ignore + encoding=ctx['encoding'], errors='xmlcharrefreplace') as f: f.write(output) except (IOError, OSError) as err: logger.warning(__("error writing file %s: %s"), outfilename, err) @@ -1177,9 +1177,9 @@ class StandaloneHTMLBuilder(Builder): # first write to a temporary file, so that if dumping fails, # the existing index won't be overwritten if self.indexer_dumps_unicode: - f = codecs.open(searchindexfn + '.tmp', 'w', encoding='utf-8') # type: ignore + f = open(searchindexfn + '.tmp', 'w', encoding='utf-8') # type: ignore else: - f = open(searchindexfn + '.tmp', 'wb') # type: ignore + f = open(searchindexfn + '.tmp', 'wb') with f: self.indexer.dump(f, self.indexer_format) movefile(searchindexfn + '.tmp', searchindexfn) @@ -1294,8 +1294,8 @@ class SingleFileHTMLBuilder(StandaloneHTMLBuilder): # There are related codes in inline_all_toctres() and # HTMLTranslter#add_secnumber(). new_secnumbers = {} # type: Dict[unicode, Tuple[int, ...]] - for docname, secnums in iteritems(self.env.toc_secnumbers): - for id, secnum in iteritems(secnums): + for docname, secnums in self.env.toc_secnumbers.items(): + for id, secnum in secnums.items(): alias = "%s/%s" % (docname, id) new_secnumbers[alias] = secnum @@ -1314,11 +1314,11 @@ class SingleFileHTMLBuilder(StandaloneHTMLBuilder): # HTMLTranslter#add_fignumber(). new_fignumbers = {} # type: Dict[unicode, Dict[unicode, Tuple[int, ...]]] # {u'foo': {'figure': {'id2': (2,), 'id1': (1,)}}, u'bar': {'figure': {'id1': (3,)}}} - for docname, fignumlist in iteritems(self.env.toc_fignumbers): - for figtype, fignums in iteritems(fignumlist): + for docname, fignumlist in self.env.toc_fignumbers.items(): + for figtype, fignums in fignumlist.items(): alias = "%s/%s" % (docname, figtype) new_fignumbers.setdefault(alias, {}) - for id, fignum in iteritems(fignums): + for id, fignum in fignums.items(): new_fignumbers[alias][id] = fignum return {self.config.master_doc: new_fignumbers} @@ -1436,9 +1436,9 @@ class SerializingHTMLBuilder(StandaloneHTMLBuilder): def dump_context(self, context, filename): # type: (Dict, unicode) -> None if self.implementation_dumps_unicode: - f = codecs.open(filename, 'w', encoding='utf-8') # type: ignore + f = open(filename, 'w', encoding='utf-8') # type: ignore else: - f = open(filename, 'wb') # type: ignore + f = open(filename, 'wb') with f: self.implementation.dump(context, f, *self.additional_dump_args) diff --git a/sphinx/builders/htmlhelp.py b/sphinx/builders/htmlhelp.py index 52600ca21..4d5172a8f 100644 --- a/sphinx/builders/htmlhelp.py +++ b/sphinx/builders/htmlhelp.py @@ -11,7 +11,6 @@ """ from __future__ import print_function -import codecs import os from os import path @@ -208,8 +207,8 @@ class HTMLHelpBuilder(StandaloneHTMLBuilder): def open_file(self, outdir, basename, mode='w'): # type: (unicode, unicode, unicode) -> IO # open a file with the correct encoding for the selected language - return codecs.open(path.join(outdir, basename), mode, # type: ignore - self.encoding, 'xmlcharrefreplace') + return open(path.join(outdir, basename), mode, # type: ignore + encoding=self.encoding, errors='xmlcharrefreplace') def update_page_context(self, pagename, templatename, ctx, event_arg): # type: (unicode, unicode, Dict, unicode) -> None diff --git a/sphinx/builders/latex/nodes.py b/sphinx/builders/latex/nodes.py index 32ac7c6a0..2dfba1b57 100644 --- a/sphinx/builders/latex/nodes.py +++ b/sphinx/builders/latex/nodes.py @@ -35,3 +35,12 @@ class math_reference(nodes.Inline, nodes.Referential, nodes.TextElement): class thebibliography(nodes.container): """A node for wrapping bibliographies.""" pass + + +HYPERLINK_SUPPORT_NODES = ( + nodes.figure, + nodes.literal_block, + nodes.table, + nodes.section, + captioned_literal_block, +) diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index c3fd1e88a..2189411ee 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -9,7 +9,6 @@ :license: BSD, see LICENSE for details. """ -import codecs import re import socket import threading @@ -308,7 +307,8 @@ class CheckExternalLinksBuilder(Builder): def write_entry(self, what, docname, line, uri): # type: (unicode, unicode, int, unicode) -> None - with codecs.open(path.join(self.outdir, 'output.txt'), 'a', 'utf-8') as output: # type: ignore # NOQA + with open(path.join(self.outdir, 'output.txt'), 'a', # type: ignore + encoding='utf-8') as output: output.write("%s:%s: [%s] %s\n" % (self.env.doc2path(docname, None), line, what, uri)) diff --git a/sphinx/builders/qthelp.py b/sphinx/builders/qthelp.py index 1b666cb4d..22ccae5f0 100644 --- a/sphinx/builders/qthelp.py +++ b/sphinx/builders/qthelp.py @@ -9,7 +9,6 @@ :license: BSD, see LICENSE for details. """ -import codecs import os import posixpath import re @@ -145,7 +144,8 @@ class QtHelpBuilder(StandaloneHTMLBuilder): nspace = nspace.lower() # write the project file - with codecs.open(path.join(outdir, outname + '.qhp'), 'w', 'utf-8') as f: # type: ignore # NOQA + with open(path.join(outdir, outname + '.qhp'), 'w', # type: ignore + encoding='utf-8') as f: body = render_file('project.qhp', outname=outname, title=self.config.html_title, version=self.config.version, project=self.config.project, namespace=nspace, @@ -159,7 +159,8 @@ class QtHelpBuilder(StandaloneHTMLBuilder): startpage = 'qthelp://' + posixpath.join(nspace, 'doc', 'index.html') logger.info(__('writing collection project file...')) - with codecs.open(path.join(outdir, outname + '.qhcp'), 'w', 'utf-8') as f: # type: ignore # NOQA + with open(path.join(outdir, outname + '.qhcp'), 'w', # type: ignore + encoding='utf-8') as f: body = render_file('project.qhcp', outname=outname, title=self.config.html_short_title, homepage=homepage, startpage=startpage) diff --git a/sphinx/builders/text.py b/sphinx/builders/text.py index 81209d165..ef8c4a7ac 100644 --- a/sphinx/builders/text.py +++ b/sphinx/builders/text.py @@ -9,7 +9,6 @@ :license: BSD, see LICENSE for details. """ -import codecs from os import path from docutils.io import StringOutput @@ -82,7 +81,7 @@ class TextBuilder(Builder): outfilename = path.join(self.outdir, os_path(docname) + self.out_suffix) ensuredir(path.dirname(outfilename)) try: - with codecs.open(outfilename, 'w', 'utf-8') as f: # type: ignore + with open(outfilename, 'w', encoding='utf-8') as f: # type: ignore f.write(self.writer.output) except (IOError, OSError) as err: logger.warning(__("error writing file %s: %s"), outfilename, err) diff --git a/sphinx/builders/xml.py b/sphinx/builders/xml.py index 6198532c9..3e0d9224e 100644 --- a/sphinx/builders/xml.py +++ b/sphinx/builders/xml.py @@ -9,7 +9,6 @@ :license: BSD, see LICENSE for details. """ -import codecs from os import path from docutils import nodes @@ -95,7 +94,7 @@ class XMLBuilder(Builder): outfilename = path.join(self.outdir, os_path(docname) + self.out_suffix) ensuredir(path.dirname(outfilename)) try: - with codecs.open(outfilename, 'w', 'utf-8') as f: # type: ignore + with open(outfilename, 'w', encoding='utf-8') as f: # type: ignore f.write(self.writer.output) except (IOError, OSError) as err: logger.warning(__("error writing file %s: %s"), outfilename, err) diff --git a/sphinx/cmd/build.py b/sphinx/cmd/build.py index 7fc12e78a..35176c7fc 100644 --- a/sphinx/cmd/build.py +++ b/sphinx/cmd/build.py @@ -219,7 +219,7 @@ def build_main(argv=sys.argv[1:]): # type: ignore args.confdir = args.sourcedir if not args.doctreedir: - args.doctreedir = os.path.join(args.sourcedir, '.doctrees') + args.doctreedir = os.path.join(args.outputdir, '.doctrees') # handle remaining filename arguments filenames = args.filenames diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index 174298579..dbc2f4a52 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -17,8 +17,8 @@ import os import re import sys import time +import warnings from collections import OrderedDict -from io import open from os import path # try to import readline, unix specific enhancement @@ -34,12 +34,13 @@ except ImportError: USE_LIBEDIT = False from docutils.utils import column_width -from six import PY2, PY3, text_type, binary_type +from six import text_type, binary_type from six.moves import input from six.moves.urllib.parse import quote as urlquote import sphinx.locale from sphinx import __display_version__, package_dir +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.locale import __ from sphinx.util import texescape from sphinx.util.console import ( # type: ignore @@ -185,20 +186,6 @@ def do_prompt(text, default=None, validator=nonempty): prompt = PROMPT_PREFIX + '%s [%s]: ' % (text, default) # type: unicode else: prompt = PROMPT_PREFIX + text + ': ' - if PY2: - # for Python 2.x, try to get a Unicode string out of it - if prompt.encode('ascii', 'replace').decode('ascii', 'replace') \ - != prompt: - if TERM_ENCODING: - prompt = prompt.encode(TERM_ENCODING) - else: - print(turquoise(__('* Note: non-ASCII default value provided ' - 'and terminal encoding unknown -- assuming ' - 'UTF-8 or Latin-1.'))) - try: - prompt = prompt.encode('utf-8') - except UnicodeEncodeError: - prompt = prompt.encode('latin1') if USE_LIBEDIT: # Note: libedit has a problem for combination of ``input()`` and escape # sequence (see #5335). To avoid the problem, all prompts are not colored @@ -222,10 +209,9 @@ def do_prompt(text, default=None, validator=nonempty): def convert_python_source(source, rex=re.compile(r"[uU]('.*?')")): # type: (unicode, Pattern) -> unicode # remove Unicode literal prefixes - if PY3: - return rex.sub('\\1', source) - else: - return source + warnings.warn('convert_python_source() is deprecated.', + RemovedInSphinx40Warning) + return rex.sub('\\1', source) class QuickstartRenderer(SphinxRenderer): @@ -399,7 +385,7 @@ def generate(d, overwrite=True, silent=False, templatedir=None): if 'mastertocmaxdepth' not in d: d['mastertocmaxdepth'] = 2 - d['PY3'] = PY3 + d['PY3'] = True d['project_fn'] = make_filename(d['project']) d['project_url'] = urlquote(d['project'].encode('idna')) d['project_manpage'] = d['project_fn'].lower() @@ -445,7 +431,7 @@ def generate(d, overwrite=True, silent=False, templatedir=None): if overwrite or not path.isfile(fpath): if 'quiet' not in d: print(__('Creating file %s.') % fpath) - with open(fpath, 'wt', encoding='utf-8', newline=newline) as f: + with open(fpath, 'wt', encoding='utf-8', newline=newline) as f: # type: ignore f.write(content) else: if 'quiet' not in d: @@ -455,7 +441,7 @@ def generate(d, overwrite=True, silent=False, templatedir=None): if not conf_path or not path.isfile(conf_path): conf_path = os.path.join(package_dir, 'templates', 'quickstart', 'conf.py_t') with open(conf_path) as f: - conf_text = convert_python_source(f.read()) + conf_text = f.read() write_file(path.join(srcdir, 'conf.py'), template.render_string(conf_text, d)) diff --git a/sphinx/config.py b/sphinx/config.py index d90569e42..4b96ae443 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -17,9 +17,7 @@ from collections import OrderedDict from os import path, getenv from typing import Any, NamedTuple, Union -from six import ( - PY2, PY3, iteritems, string_types, binary_type, text_type, integer_types, class_types -) +from six import string_types, binary_type, text_type, integer_types from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.errors import ConfigError, ExtensionError @@ -38,15 +36,27 @@ if False: logger = logging.getLogger(__name__) CONFIG_FILENAME = 'conf.py' -UNSERIALIZEABLE_TYPES = class_types + (types.ModuleType, types.FunctionType) +UNSERIALIZABLE_TYPES = (type, types.ModuleType, types.FunctionType) copyright_year_re = re.compile(r'^((\d{4}-)?)(\d{4})(?=[ ,])') -if PY3: - unicode = str # special alias for static typing... - ConfigValue = NamedTuple('ConfigValue', [('name', str), ('value', Any), - ('rebuild', Union[bool, unicode])]) + ('rebuild', Union[bool, text_type])]) + + +def is_serializable(obj): + # type: (Any) -> bool + """Check if object is serializable or not.""" + if isinstance(obj, UNSERIALIZABLE_TYPES): + return False + elif isinstance(obj, dict): + for key, value in obj.items(): + if not is_serializable(key) or not is_serializable(value): + return False + elif isinstance(obj, (list, tuple, set)): + return all(is_serializable(i) for i in obj) + + return True class ENUM: @@ -68,8 +78,6 @@ class ENUM: string_classes = [text_type] # type: List -if PY2: - string_classes.append(binary_type) # => [str, unicode] class Config: @@ -246,7 +254,7 @@ class Config: def init_values(self): # type: () -> None config = self._raw_config - for valname, value in iteritems(self.overrides): + for valname, value in self.overrides.items(): try: if '.' in valname: realvalname, key = valname.split('.', 1) @@ -295,7 +303,7 @@ class Config: def __iter__(self): # type: () -> Generator[ConfigValue, None, None] - for name, value in iteritems(self.values): + for name, value in self.values.items(): yield ConfigValue(name, getattr(self, name), value[1]) # type: ignore def add(self, name, default, rebuild, types): @@ -316,17 +324,17 @@ class Config: """Obtains serializable data for pickling.""" # remove potentially pickling-problematic values from config __dict__ = {} - for key, value in iteritems(self.__dict__): - if key.startswith('_') or isinstance(value, UNSERIALIZEABLE_TYPES): + for key, value in self.__dict__.items(): + if key.startswith('_') or not is_serializable(value): pass else: __dict__[key] = value # create a picklable copy of values list __dict__['values'] = {} - for key, value in iteritems(self.values): # type: ignore + for key, value in self.values.items(): # type: ignore real_value = getattr(self, key) - if isinstance(real_value, UNSERIALIZEABLE_TYPES): + if not is_serializable(real_value): # omit unserializable value real_value = None @@ -352,9 +360,8 @@ def eval_config_file(filename, tags): try: execfile_(filename, namespace) except SyntaxError as err: - msg = __("There is a syntax error in your configuration file: %s") - if PY3: - msg += __("\nDid you change the syntax from 2.x to 3.x?") + msg = __("There is a syntax error in your configuration file: %s\n" + "Did you change the syntax from 2.x to 3.x?") raise ConfigError(msg % err) except SystemExit: msg = __("The configuration file (or one of the modules it imports) " @@ -476,7 +483,7 @@ def check_unicode(config): """ nonascii_re = re.compile(br'[\x80-\xff]') - for name, value in iteritems(config._raw_config): + for name, value in config._raw_config.items(): if isinstance(value, binary_type) and nonascii_re.search(value): logger.warning(__('the config value %r is set to a string with non-ASCII ' 'characters; this can lead to Unicode errors occurring. ' diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py index 868787a14..e14a451d9 100644 --- a/sphinx/directives/code.py +++ b/sphinx/directives/code.py @@ -7,7 +7,6 @@ :license: BSD, see LICENSE for details. """ -import codecs import sys import warnings from difflib import unified_diff @@ -213,7 +212,8 @@ class LiteralIncludeReader: def read_file(self, filename, location=None): # type: (unicode, Any) -> List[unicode] try: - with codecs.open(filename, 'r', self.encoding, errors='strict') as f: # type: ignore # NOQA + with open(filename, 'r', # type: ignore + encoding=self.encoding, errors='strict') as f: text = f.read() # type: unicode if 'tab-width' in self.options: text = text.expandtabs(self.options['tab-width']) diff --git a/sphinx/domains/__init__.py b/sphinx/domains/__init__.py index e8c3a59dd..4824f4fb0 100644 --- a/sphinx/domains/__init__.py +++ b/sphinx/domains/__init__.py @@ -12,8 +12,6 @@ import copy -from six import iteritems - from sphinx.errors import SphinxError from sphinx.locale import _ @@ -183,7 +181,7 @@ class Domain: self.data = env.domaindata[self.name] if self.data['version'] != self.data_version: raise IOError('data of %r domain out of date' % self.label) - for name, obj in iteritems(self.object_types): + for name, obj in self.object_types.items(): for rolename in obj.roles: self._role2type.setdefault(rolename, []).append(name) self._type2role[name] = obj.roles[0] if obj.roles else '' diff --git a/sphinx/domains/changeset.py b/sphinx/domains/changeset.py index ed878b1d3..669d8c5b7 100644 --- a/sphinx/domains/changeset.py +++ b/sphinx/domains/changeset.py @@ -12,7 +12,6 @@ from typing import NamedTuple from docutils import nodes -from six import iteritems from sphinx import addnodes from sphinx import locale @@ -112,7 +111,7 @@ class ChangeSetDomain(Domain): def clear_doc(self, docname): # type: (unicode) -> None - for version, changes in iteritems(self.data['changes']): + for version, changes in self.data['changes'].items(): for changeset in changes[:]: if changeset.docname == docname: changes.remove(changeset) @@ -120,7 +119,7 @@ class ChangeSetDomain(Domain): def merge_domaindata(self, docnames, otherdata): # type: (List[unicode], Dict) -> None # XXX duplicates? - for version, otherchanges in iteritems(otherdata['changes']): + for version, otherchanges in otherdata['changes'].items(): changes = self.data['changes'].setdefault(version, []) for changeset in otherchanges: if changeset.docname in docnames: diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 9c797cd36..81ad46ee7 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -14,7 +14,7 @@ from copy import deepcopy from docutils import nodes, utils from docutils.parsers.rst import directives -from six import iteritems, text_type +from six import text_type from sphinx import addnodes from sphinx.directives import ObjectDescription @@ -604,7 +604,7 @@ class ASTBase(UnicodeMixin): if type(self) is not type(other): return False try: - for key, value in iteritems(self.__dict__): + for key, value in self.__dict__.items(): if value != getattr(other, key): return False except AttributeError: diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 5f822aeca..1fdd05780 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -13,7 +13,6 @@ import re from docutils import nodes from docutils.parsers.rst import directives -from six import iteritems from sphinx import addnodes, locale from sphinx.deprecation import DeprecatedDict, RemovedInSphinx30Warning @@ -677,7 +676,7 @@ class PythonModuleIndex(Index): ignores = self.domain.env.config['modindex_common_prefix'] # type: ignore ignores = sorted(ignores, key=len, reverse=True) # list of all modules, sorted by module name - modules = sorted(iteritems(self.domain.data['modules']), + modules = sorted(self.domain.data['modules'].items(), key=lambda x: x[0].lower()) # sort out collapsable modules prev_modname = '' @@ -727,7 +726,7 @@ class PythonModuleIndex(Index): collapse = len(modules) - num_toplevels < num_toplevels # sort by first letter - sorted_content = sorted(iteritems(content)) + sorted_content = sorted(content.items()) return sorted_content, collapse @@ -923,9 +922,9 @@ class PythonDomain(Domain): def get_objects(self): # type: () -> Iterator[Tuple[unicode, unicode, unicode, unicode, unicode, int]] - for modname, info in iteritems(self.data['modules']): + for modname, info in self.data['modules'].items(): yield (modname, modname, 'module', info[0], 'module-' + modname, 0) - for refname, (docname, type) in iteritems(self.data['objects']): + for refname, (docname, type) in self.data['objects'].items(): if type != 'module': # modules are already handled yield (refname, refname, type, docname, refname, 1) diff --git a/sphinx/domains/rst.py b/sphinx/domains/rst.py index fcb461484..8d81314f6 100644 --- a/sphinx/domains/rst.py +++ b/sphinx/domains/rst.py @@ -11,8 +11,6 @@ import re -from six import iteritems - from sphinx import addnodes from sphinx.directives import ObjectDescription from sphinx.domains import Domain, ObjType @@ -172,7 +170,7 @@ class ReSTDomain(Domain): def get_objects(self): # type: () -> Iterator[Tuple[unicode, unicode, unicode, unicode, unicode, int]] - for (typ, name), docname in iteritems(self.data['objects']): + for (typ, name), docname in self.data['objects'].items(): yield name, name, typ, docname, typ + '-' + name, 1 diff --git a/sphinx/domains/std.py b/sphinx/domains/std.py index 002820ebd..0fee0e54b 100644 --- a/sphinx/domains/std.py +++ b/sphinx/domains/std.py @@ -17,7 +17,6 @@ from copy import copy from docutils import nodes from docutils.parsers.rst import directives from docutils.statemachine import ViewList -from six import iteritems from sphinx import addnodes from sphinx.deprecation import RemovedInSphinx30Warning @@ -529,7 +528,7 @@ class StandardDomain(Domain): # set up enumerable nodes self.enumerable_nodes = copy(self.enumerable_nodes) # create a copy for this instance - for node, settings in iteritems(env.app.registry.enumerable_nodes): + for node, settings in env.app.registry.enumerable_nodes.items(): self.enumerable_nodes[node] = settings def clear_doc(self, docname): @@ -607,7 +606,7 @@ class StandardDomain(Domain): def note_labels(self, env, docname, document): # type: (BuildEnvironment, unicode, nodes.Node) -> None labels, anonlabels = self.data['labels'], self.data['anonlabels'] - for name, explicit in iteritems(document.nametypes): + for name, explicit in document.nametypes.items(): if not explicit: continue labelid = document.nameids[name] @@ -647,7 +646,7 @@ class StandardDomain(Domain): def check_consistency(self): # type: () -> None - for name, (docname, labelid, lineno) in iteritems(self.data['citations']): + for name, (docname, labelid, lineno) in self.data['citations'].items(): if name not in self.data['citation_refs']: logger.warning(__('Citation [%s] is not referenced.'), name, type='ref', subtype='citation', @@ -887,20 +886,20 @@ class StandardDomain(Domain): # handle the special 'doc' reference here for doc in self.env.all_docs: yield (doc, clean_astext(self.env.titles[doc]), 'doc', doc, '', -1) - for (prog, option), info in iteritems(self.data['progoptions']): + for (prog, option), info in self.data['progoptions'].items(): if prog: fullname = ".".join([prog, option]) yield (fullname, fullname, 'cmdoption', info[0], info[1], 1) else: yield (option, option, 'cmdoption', info[0], info[1], 1) - for (type, name), info in iteritems(self.data['objects']): + for (type, name), info in self.data['objects'].items(): yield (name, name, type, info[0], info[1], self.object_types[type].attrs['searchprio']) - for name, info in iteritems(self.data['labels']): + for name, info in self.data['labels'].items(): yield (name, info[2], 'label', info[0], info[1], -1) # add anonymous-only labels as well non_anon_labels = set(self.data['labels']) - for name, info in iteritems(self.data['anonlabels']): + for name, info in self.data['anonlabels'].items(): if name not in non_anon_labels: yield (name, name, 'label', info[0], info[1], -1) diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index ce050d906..29d69726b 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -62,9 +62,7 @@ default_settings = { # This is increased every time an environment attribute is added # or changed to properly invalidate pickle files. -# -# NOTE: increase base version by 2 to have distinct numbers for Py2 and 3 -ENV_VERSION = 54 + (sys.version_info[0] - 2) +ENV_VERSION = 56 # config status CONFIG_OK = 1 diff --git a/sphinx/environment/adapters/indexentries.py b/sphinx/environment/adapters/indexentries.py index 5f5da0b1e..d39fb057d 100644 --- a/sphinx/environment/adapters/indexentries.py +++ b/sphinx/environment/adapters/indexentries.py @@ -13,7 +13,7 @@ import re import unicodedata from itertools import groupby -from six import text_type, iteritems +from six import text_type from sphinx.locale import _, __ from sphinx.util import split_into, logging @@ -60,7 +60,7 @@ class IndexEntries: # maintain links in sorted/deterministic order bisect.insort(entry[0], (main, uri)) - for fn, entries in iteritems(self.env.indexentries): + for fn, entries in self.env.indexentries.items(): # new entry types must be listed in directives/other.py! for type, value, tid, main, index_key in entries: try: @@ -146,7 +146,7 @@ class IndexEntries: # type: (Tuple[unicode, List]) -> unicode # hack: mutating the subitems dicts to a list in the keyfunc k, v = item - v[1] = sorted((si, se) for (si, (se, void, void)) in iteritems(v[1])) + v[1] = sorted((si, se) for (si, (se, void, void)) in v[1].items()) if v[2] is None: # now calculate the key if k.startswith(u'\N{RIGHT-TO-LEFT MARK}'): diff --git a/sphinx/environment/adapters/toctree.py b/sphinx/environment/adapters/toctree.py index 387e04886..c309fb27c 100644 --- a/sphinx/environment/adapters/toctree.py +++ b/sphinx/environment/adapters/toctree.py @@ -10,7 +10,6 @@ """ from docutils import nodes -from six import iteritems from sphinx import addnodes from sphinx.locale import __ @@ -261,7 +260,7 @@ class TocTree: def get_toctree_ancestors(self, docname): # type: (unicode) -> List[unicode] parent = {} - for p, children in iteritems(self.env.toctree_includes): + for p, children in self.env.toctree_includes.items(): for child in children: parent[child] = p ancestors = [] # type: List[unicode] diff --git a/sphinx/environment/collectors/asset.py b/sphinx/environment/collectors/asset.py index 725431dfa..d4dcc5461 100644 --- a/sphinx/environment/collectors/asset.py +++ b/sphinx/environment/collectors/asset.py @@ -15,7 +15,7 @@ from os import path from docutils import nodes from docutils.utils import relative_path -from six import iteritems, itervalues +from six import itervalues from sphinx import addnodes from sphinx.environment.collectors import EnvironmentCollector @@ -108,7 +108,7 @@ class ImageCollector(EnvironmentCollector): except (OSError, IOError) as err: logger.warning(__('image file %s not readable: %s') % (filename, err), location=node, type='image', subtype='not_readable') - for key, files in iteritems(globbed): + for key, files in globbed.items(): candidates[key] = sorted(files, key=len)[0] # select by similarity diff --git a/sphinx/environment/collectors/toctree.py b/sphinx/environment/collectors/toctree.py index fe67bbcba..462997164 100644 --- a/sphinx/environment/collectors/toctree.py +++ b/sphinx/environment/collectors/toctree.py @@ -10,7 +10,6 @@ """ from docutils import nodes -from six import iteritems from sphinx import addnodes from sphinx.environment.adapters.toctree import TocTree @@ -295,7 +294,7 @@ class TocTreeCollector(EnvironmentCollector): if env.config.numfig: _walk_doc(env.config.master_doc, tuple()) # type: ignore - for docname, fignums in iteritems(env.toc_fignumbers): + for docname, fignums in env.toc_fignumbers.items(): if fignums != old_fignumbers.get(docname): rewrite_needed.append(docname) diff --git a/sphinx/errors.py b/sphinx/errors.py index e97447e86..005605f1c 100644 --- a/sphinx/errors.py +++ b/sphinx/errors.py @@ -55,6 +55,7 @@ class ExtensionError(SphinxError): def __init__(self, message, orig_exc=None): # type: (unicode, Exception) -> None SphinxError.__init__(self, message) + self.message = message self.orig_exc = orig_exc def __repr__(self): diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index ac7080593..67b39c1f2 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -14,12 +14,14 @@ import inspect import re import sys +import warnings from typing import Any from docutils.statemachine import ViewList -from six import iteritems, itervalues, text_type, class_types, string_types +from six import itervalues, text_type, string_types import sphinx +from sphinx.deprecation import RemovedInSphinx30Warning 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.locale import _, __ @@ -1006,7 +1008,13 @@ class FunctionDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter): # typ # cannot introspect arguments of a C function or method return None try: - args = Signature(self.object).format_args() + if (not isfunction(self.object) and + not isbuiltin(self.object) and + not inspect.isclass(self.object) and + hasattr(self.object, '__call__')): + args = Signature(self.object.__call__).format_args() + else: + args = Signature(self.object).format_args() except TypeError: if (is_builtin_class_method(self.object, '__new__') and is_builtin_class_method(self.object, '__init__')): @@ -1053,7 +1061,7 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter): # type: @classmethod def can_document_member(cls, member, membername, isattr, parent): # type: (Any, unicode, bool, Any) -> bool - return isinstance(member, class_types) + return isinstance(member, type) def import_object(self): # type: () -> Any @@ -1205,8 +1213,7 @@ class ExceptionDocumenter(ClassDocumenter): @classmethod def can_document_member(cls, member, membername, isattr, parent): # type: (Any, unicode, bool, Any) -> bool - return isinstance(member, class_types) and \ - issubclass(member, BaseException) # type: ignore + return isinstance(member, type) and issubclass(member, BaseException) class DataDocumenter(ModuleLevelDocumenter): @@ -1337,7 +1344,7 @@ class AttributeDocumenter(DocstringStripSignatureMixin, ClassLevelDocumenter): # exported anywhere by Python return isdatadesc or (not isinstance(parent, ModuleDocumenter) and not inspect.isroutine(member) and - not isinstance(member, class_types)) + not isinstance(member, type)) def document_members(self, all_members=False): # type: (bool) -> None @@ -1429,7 +1436,7 @@ def get_documenters(app): def autodoc_attrgetter(app, obj, name, *defargs): # type: (Sphinx, Any, unicode, Any) -> Any """Alternative getattr() for types""" - for typ, func in iteritems(app.registry.autodoc_attrgettrs): + for typ, func in app.registry.autodoc_attrgettrs.items(): if isinstance(obj, typ): return func(obj, name, *defargs) @@ -1442,9 +1449,13 @@ def merge_autodoc_default_flags(app, config): if not config.autodoc_default_flags: return - logger.warning(__('autodoc_default_flags is now deprecated. ' - 'Please use autodoc_default_options instead.'), - type='autodoc') + # 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) for option in config.autodoc_default_flags: if isinstance(option, string_types): diff --git a/sphinx/ext/autodoc/importer.py b/sphinx/ext/autodoc/importer.py index eba3412d5..d34222c1e 100644 --- a/sphinx/ext/autodoc/importer.py +++ b/sphinx/ext/autodoc/importer.py @@ -16,7 +16,7 @@ import warnings from collections import namedtuple from types import FunctionType, MethodType, ModuleType -from six import PY2 +from six import iteritems from sphinx.util import logging from sphinx.util.inspect import isenumclass, safe_getattr @@ -219,8 +219,6 @@ def import_object(modname, objpath, objtype='', attrgetter=safe_getattr, warning else: errmsg += '; the following exception was raised:\n%s' % traceback.format_exc() - if PY2: - errmsg = errmsg.decode('utf-8') # type: ignore logger.debug(errmsg) raise ImportError(errmsg) @@ -234,12 +232,6 @@ def get_object_members(subject, objpath, attrgetter, analyzer=None): # the members directly defined in the class obj_dict = attrgetter(subject, '__dict__', {}) - # Py34 doesn't have enum members in __dict__. - if sys.version_info[:2] == (3, 4) and isenumclass(subject): - obj_dict = dict(obj_dict) - for name, value in subject.__members__.items(): - obj_dict[name] = value - members = {} # type: Dict[str, Attribute] # enum members @@ -248,6 +240,11 @@ def get_object_members(subject, objpath, attrgetter, analyzer=None): if name not in members: members[name] = Attribute(name, True, value) + superclass = subject.__mro__[1] + for name, value in iteritems(obj_dict): + if name not in superclass.__dict__: + members[name] = Attribute(name, True, value) + # other members for name in dir(subject): try: diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index 14f533f0c..5cb0d7416 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -20,7 +20,6 @@ from __future__ import print_function import argparse -import codecs import locale import os import pydoc @@ -249,8 +248,8 @@ def find_autosummary_in_files(filenames): """ documented = [] # type: List[Tuple[unicode, unicode, unicode]] for filename in filenames: - with codecs.open(filename, 'r', encoding='utf-8', # type: ignore - errors='ignore') as f: + with open(filename, 'r', encoding='utf-8', # type: ignore + errors='ignore') as f: lines = f.read().splitlines() documented.extend(find_autosummary_in_lines(lines, filename=filename)) return documented diff --git a/sphinx/ext/coverage.py b/sphinx/ext/coverage.py index adbf2ddee..9300c1f74 100644 --- a/sphinx/ext/coverage.py +++ b/sphinx/ext/coverage.py @@ -15,7 +15,6 @@ import inspect import re from os import path -from six import iteritems from six.moves import cPickle as pickle import sphinx @@ -73,7 +72,7 @@ class CoverageBuilder(Builder): logger.warning(__('invalid regex %r in coverage_c_regexes'), exp) self.c_ignorexps = {} # type: Dict[unicode, List[Pattern]] - for (name, exps) in iteritems(self.config.coverage_ignore_c_items): + for (name, exps) in self.config.coverage_ignore_c_items.items(): self.c_ignorexps[name] = compile_regex_list('coverage_ignore_c_items', exps) self.mod_ignorexps = compile_regex_list('coverage_ignore_modules', @@ -127,7 +126,7 @@ class CoverageBuilder(Builder): write_header(op, 'Undocumented C API elements', '=') op.write('\n') - for filename, undoc in iteritems(self.c_undoc): + for filename, undoc in self.c_undoc.items(): write_header(op, filename) for typ, name in sorted(undoc): op.write(' * %-50s [%9s]\n' % (name, typ)) @@ -247,7 +246,7 @@ class CoverageBuilder(Builder): if undoc['classes']: op.write('Classes:\n') for name, methods in sorted( - iteritems(undoc['classes'])): + undoc['classes'].items()): if not methods: op.write(' * %s\n' % name) else: diff --git a/sphinx/ext/doctest.py b/sphinx/ext/doctest.py index e69346462..a0dccddfb 100644 --- a/sphinx/ext/doctest.py +++ b/sphinx/ext/doctest.py @@ -11,27 +11,28 @@ """ from __future__ import absolute_import -import codecs import doctest import re import sys import time +import warnings from os import path from docutils import nodes from docutils.parsers.rst import directives from packaging.specifiers import SpecifierSet, InvalidSpecifier from packaging.version import Version -from six import itervalues, StringIO, binary_type, text_type, PY2 +from six import itervalues, StringIO, binary_type import sphinx from sphinx.builders import Builder +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.locale import __ from sphinx.util import force_decode, 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 fs_encoding, relpath +from sphinx.util.osutil import relpath if False: # For type annotation @@ -43,18 +44,12 @@ logger = logging.getLogger(__name__) blankline_re = re.compile(r'^\s*', re.MULTILINE) doctestopt_re = re.compile(r'#\s*doctest:.+$', re.MULTILINE) -if PY2: - def doctest_encode(text, encoding): - # type: (str, unicode) -> unicode - if isinstance(text, text_type): - text = text.encode(encoding) - if text.startswith(codecs.BOM_UTF8): - text = text[len(codecs.BOM_UTF8):] - return text -else: - def doctest_encode(text, encoding): - # type: (unicode, unicode) -> unicode - return text + +def doctest_encode(text, encoding): + # type: (unicode, unicode) -> unicode + warnings.warn('doctest_encode() is deprecated.', + RemovedInSphinx40Warning) + return text def is_allowed_version(spec, version): @@ -153,7 +148,7 @@ class TestDirective(SphinxDirective): if self.name == 'doctest' and 'pyversion' in self.options: try: spec = self.options['pyversion'] - python_version = '.'.join(str(v) for v in sys.version_info[:3]) + python_version = '.'.join([str(v) for v in sys.version_info[:3]]) if not is_allowed_version(spec, python_version): flag = doctest.OPTIONFLAGS_BY_NAME['SKIP'] node['options'][flag] = True # Skip the test @@ -318,8 +313,8 @@ class DocTestBuilder(Builder): date = time.strftime('%Y-%m-%d %H:%M:%S') self.outfile = None # type: IO - self.outfile = codecs.open(path.join(self.outdir, 'output.txt'), # type: ignore - 'w', encoding='utf-8') + self.outfile = open(path.join(self.outdir, 'output.txt'), # type: ignore + 'w', encoding='utf-8') self.outfile.write(('Results of doctest builder run on %s\n' '==================================%s\n') % (date, '=' * len(date))) @@ -382,7 +377,7 @@ Doctest summary self.test_doc(docname, doctree) def get_filename_for_node(self, node, docname): - # type: (nodes.Node, unicode) -> str + # type: (nodes.Node, unicode) -> unicode """Try to get the file which actually contains the doctest, not the filename of the document it's included in.""" try: @@ -390,8 +385,6 @@ Doctest summary .rsplit(':docstring of ', maxsplit=1)[0] except Exception: filename = self.env.doc2path(docname, base=None) - if PY2: - return filename.encode(fs_encoding) return filename @staticmethod @@ -444,7 +437,7 @@ Doctest summary logger.warning(__('no code/output in %s block at %s:%s'), node.get('testnodetype', 'doctest'), filename, line_number) - code = TestCode(source, type=node.get('testnodetype', 'doctest'), + code = TestCode(source, type=node.get('testnodetype', 'doctest'), # type: ignore filename=filename, lineno=line_number, options=node.get('options')) node_groups = node.get('groups', ['default']) @@ -501,9 +494,9 @@ Doctest summary # type: (Any, List[TestCode], Any) -> bool examples = [] for testcode in testcodes: - examples.append(doctest.Example( # type: ignore - doctest_encode(testcode.code, self.env.config.source_encoding), '', # type: ignore # NOQA - lineno=testcode.lineno)) + example = doctest.Example(testcode.code, '', # type: ignore + lineno=testcode.lineno) + examples.append(example) if not examples: return True # simulate a doctest with the code @@ -528,9 +521,8 @@ Doctest summary if len(code) == 1: # ordinary doctests (code/output interleaved) try: - test = parser.get_doctest( # type: ignore - doctest_encode(code[0].code, self.env.config.source_encoding), {}, # type: ignore # NOQA - group.name, code[0].filename, code[0].lineno) + test = parser.get_doctest(code[0].code, {}, group.name, # type: ignore + code[0].filename, code[0].lineno) except Exception: logger.warning(__('ignoring invalid doctest code: %r'), code[0].code, location=(code[0].filename, code[0].lineno)) @@ -555,11 +547,10 @@ Doctest summary exc_msg = m.group('msg') else: exc_msg = None - example = doctest.Example( # type: ignore - doctest_encode(code[0].code, self.env.config.source_encoding), output, # type: ignore # NOQA - exc_msg=exc_msg, - lineno=code[0].lineno, - options=options) + example = doctest.Example(code[0].code, output, # type: ignore + exc_msg=exc_msg, + lineno=code[0].lineno, + options=options) test = doctest.DocTest([example], {}, group.name, # type: ignore code[0].filename, code[0].lineno, None) self.type = 'exec' # multiple statements again diff --git a/sphinx/ext/extlinks.py b/sphinx/ext/extlinks.py index 29bfe928f..106748dbb 100644 --- a/sphinx/ext/extlinks.py +++ b/sphinx/ext/extlinks.py @@ -25,7 +25,6 @@ """ from docutils import nodes, utils -from six import iteritems import sphinx from sphinx.util.nodes import split_explicit_title @@ -64,7 +63,7 @@ def make_link_role(base_url, prefix): def setup_link_roles(app): # type: (Sphinx) -> None - for name, (base_url, prefix) in iteritems(app.config.extlinks): + for name, (base_url, prefix) in app.config.extlinks.items(): app.add_role(name, make_link_role(base_url, prefix)) diff --git a/sphinx/ext/graphviz.py b/sphinx/ext/graphviz.py index 1a56536de..f7f97213c 100644 --- a/sphinx/ext/graphviz.py +++ b/sphinx/ext/graphviz.py @@ -10,7 +10,6 @@ :license: BSD, see LICENSE for details. """ -import codecs import posixpath import re from hashlib import sha1 @@ -142,7 +141,7 @@ class Graphviz(SphinxDirective): rel_filename, filename = self.env.relfn2path(argument) self.env.note_dependency(rel_filename) try: - with codecs.open(filename, 'r', 'utf-8') as fp: # type: ignore + with open(filename, 'r', encoding='utf-8') as fp: # type: ignore dotcode = fp.read() except (IOError, OSError): return [document.reporter.warning( @@ -309,7 +308,7 @@ def render_dot_html(self, node, code, options, prefix='graphviz', self.body.append('

%s

' % alt) self.body.append('\n') else: - with codecs.open(outfn + '.map', 'r', encoding='utf-8') as mapfile: # type: ignore + with open(outfn + '.map', 'r', encoding='utf-8') as mapfile: # type: ignore imgmap = ClickableMapDefinition(outfn + '.map', mapfile.read(), dot=code) if imgmap.clickable: # has a map diff --git a/sphinx/ext/imgmath.py b/sphinx/ext/imgmath.py index 593835554..5be272ab1 100644 --- a/sphinx/ext/imgmath.py +++ b/sphinx/ext/imgmath.py @@ -9,7 +9,6 @@ :license: BSD, see LICENSE for details. """ -import codecs import posixpath import re import shutil @@ -123,7 +122,7 @@ def compile_math(latex, builder): """Compile LaTeX macros for math to DVI.""" tempdir = ensure_tempdir(builder) filename = path.join(tempdir, 'math.tex') - with codecs.open(filename, 'w', 'utf-8') as f: # type: ignore + with open(filename, 'w', encoding='utf-8') as f: # type: ignore f.write(latex) # build latex command; old versions of latex don't have the diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index ac1ec9bc9..482ed1957 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -34,7 +34,7 @@ from os import path from docutils import nodes from docutils.utils import relative_path -from six import PY3, iteritems, string_types +from six import string_types, text_type from six.moves.urllib.parse import urlsplit, urlunsplit import sphinx @@ -50,10 +50,7 @@ if False: from sphinx.config import Config # NOQA from sphinx.environment import BuildEnvironment # NOQA - if PY3: - unicode = str - - Inventory = Dict[unicode, Dict[unicode, Tuple[unicode, unicode, unicode, unicode]]] + Inventory = Dict[text_type, Dict[text_type, Tuple[text_type, text_type, text_type, text_type]]] # NOQA logger = logging.getLogger(__name__) @@ -212,7 +209,7 @@ def load_mappings(app): cache_time = now - app.config.intersphinx_cache_limit * 86400 inventories = InventoryAdapter(app.builder.env) update = False - for key, value in iteritems(app.config.intersphinx_mapping): + for key, value in app.config.intersphinx_mapping.items(): name = None # type: unicode uri = None # type: unicode inv = None # type: Union[unicode, Tuple[unicode, ...]] @@ -284,7 +281,7 @@ def load_mappings(app): for name, _x, invdata in named_vals + unnamed_vals: if name: inventories.named_inventory[name] = invdata - for type, objects in iteritems(invdata): + for type, objects in invdata.items(): inventories.main_inventory.setdefault(type, {}).update(objects) @@ -416,6 +413,6 @@ def inspect_main(argv): if __name__ == '__main__': import logging # type: ignore - logging.basicConfig() + logging.basicConfig() # type: ignore inspect_main(argv=sys.argv[1:]) # type: ignore diff --git a/sphinx/ext/mathbase.py b/sphinx/ext/mathbase.py index 58525f0cf..421ea6a03 100644 --- a/sphinx/ext/mathbase.py +++ b/sphinx/ext/mathbase.py @@ -12,10 +12,12 @@ 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 @@ -26,6 +28,21 @@ if False: from sphinx.application import Sphinx # NOQA +class MathDirective(MathDirectiveBase): + def run(self): + warnings.warn('sphinx.ext.mathbase.MathDirective is moved to ' + 'sphinx.directives.patches package.', + RemovedInSphinx30Warning) + return super(MathDirective, self).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) + return math_role_base(role, rawtext, text, lineno, inliner, options, content) + + def get_node_equation_number(writer, node): # type: (Writer, nodes.Node) -> unicode warnings.warn('sphinx.ext.mathbase.get_node_equation_number() is moved to ' diff --git a/sphinx/ext/napoleon/__init__.py b/sphinx/ext/napoleon/__init__.py index f8b358463..80fcd3dcb 100644 --- a/sphinx/ext/napoleon/__init__.py +++ b/sphinx/ext/napoleon/__init__.py @@ -9,10 +9,6 @@ :license: BSD, see LICENSE for details. """ -import sys - -from six import PY2, iteritems - import sphinx from sphinx.application import Sphinx from sphinx.ext.napoleon.docstring import GoogleDocstring, NumpyDocstring @@ -274,9 +270,9 @@ class Config: def __init__(self, **settings): # type: (Any) -> None - for name, (default, rebuild) in iteritems(self._config_values): + for name, (default, rebuild) in self._config_values.items(): setattr(self, name, default) - for name, value in iteritems(settings): + for name, value in settings.items(): setattr(self, name, value) @@ -312,7 +308,7 @@ def setup(app): app.connect('autodoc-process-docstring', _process_docstring) app.connect('autodoc-skip-member', _skip_member) - for name, (default, rebuild) in iteritems(Config._config_values): + for name, (default, rebuild) in Config._config_values.items(): app.add_config_value(name, default, rebuild) return {'version': sphinx.__display_version__, 'parallel_read_safe': True} @@ -435,34 +431,26 @@ def _skip_member(app, what, name, obj, skip, options): if name != '__weakref__' and has_doc and is_member: cls_is_owner = False if what == 'class' or what == 'exception': - if PY2: - cls = getattr(obj, 'im_class', getattr(obj, '__objclass__', - None)) - cls_is_owner = (cls and hasattr(cls, name) and - name in cls.__dict__) - elif sys.version_info >= (3, 3): - qualname = getattr(obj, '__qualname__', '') - cls_path, _, _ = qualname.rpartition('.') - if cls_path: - try: - if '.' in cls_path: - import importlib - import functools + qualname = getattr(obj, '__qualname__', '') + cls_path, _, _ = qualname.rpartition('.') + if cls_path: + try: + if '.' in cls_path: + import importlib + import functools - mod = importlib.import_module(obj.__module__) - mod_path = cls_path.split('.') - cls = functools.reduce(getattr, mod_path, mod) - else: - cls = obj.__globals__[cls_path] - except Exception: - cls_is_owner = False + mod = importlib.import_module(obj.__module__) + mod_path = cls_path.split('.') + cls = functools.reduce(getattr, mod_path, mod) else: - cls_is_owner = (cls and hasattr(cls, name) and - name in cls.__dict__) - else: + cls = obj.__globals__[cls_path] + except Exception: cls_is_owner = False + else: + cls_is_owner = (cls and hasattr(cls, name) and # type: ignore + name in cls.__dict__) else: - cls_is_owner = True + cls_is_owner = False if what == 'module' or cls_is_owner: is_init = (name == '__init__') diff --git a/sphinx/ext/viewcode.py b/sphinx/ext/viewcode.py index ca944a636..38c34733b 100644 --- a/sphinx/ext/viewcode.py +++ b/sphinx/ext/viewcode.py @@ -13,7 +13,7 @@ import traceback import warnings from docutils import nodes -from six import iteritems, text_type +from six import text_type import sphinx from sphinx import addnodes @@ -163,7 +163,7 @@ def collect_pages(app): # len(env._viewcode_modules), nonl=1) for modname, entry in status_iterator( - sorted(iteritems(env._viewcode_modules)), # type: ignore + sorted(env._viewcode_modules.items()), # type: ignore 'highlighting module code... ', "blue", len(env._viewcode_modules), # type: ignore app.verbosity, lambda x: x[0]): @@ -188,7 +188,7 @@ def collect_pages(app): # the collected tags (HACK: this only works if the tag boundaries are # properly nested!) maxindex = len(lines) - 1 - for name, docname in iteritems(used): + for name, docname in used.items(): type, start, end = tags[name] backlink = urito(pagename, docname) + '#' + refname + '.' + name lines[start] = ( diff --git a/sphinx/extension.py b/sphinx/extension.py index 2bb38abe5..4282d5f07 100644 --- a/sphinx/extension.py +++ b/sphinx/extension.py @@ -9,8 +9,6 @@ :license: BSD, see LICENSE for details. """ -from six import iteritems - from sphinx.errors import VersionRequirementError from sphinx.locale import __ from sphinx.util import logging @@ -49,7 +47,7 @@ def verify_needs_extensions(app, config): if config.needs_extensions is None: return - for extname, reqversion in iteritems(config.needs_extensions): + for extname, reqversion in config.needs_extensions.items(): extension = app.extensions.get(extname) if extension is None: logger.warning(__('The %s extension is required by needs_extensions settings, ' diff --git a/sphinx/io.py b/sphinx/io.py index ad76c2afb..f18a1e95f 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -18,7 +18,7 @@ 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 six import text_type, iteritems +from six import text_type from typing import Any, Union # NOQA from sphinx.deprecation import RemovedInSphinx30Warning @@ -282,7 +282,7 @@ class FiletypeNotFoundError(Exception): def get_filetype(source_suffix, filename): # type: (Dict[unicode, unicode], unicode) -> unicode - for suffix, filetype in iteritems(source_suffix): + for suffix, filetype in source_suffix.items(): if filename.endswith(suffix): # If default filetype (None), considered as restructuredtext. return filetype or 'restructuredtext' diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.js b/sphinx/locale/ar/LC_MESSAGES/sphinx.js new file mode 100644 index 000000000..7d44f582e --- /dev/null +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.js @@ -0,0 +1 @@ +Documentation.addTranslations({"locale": "ar", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "© \u062d\u0642\u0648\u0642 \u0627\u0644\u0646\u0634\u0631 %(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 Sphinx %(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 new file mode 100644 index 000000000..94e4e570b Binary files /dev/null and b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po new file mode 100644 index 000000000..84d300868 --- /dev/null +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -0,0 +1,3464 @@ +# Translations template for Sphinx. +# Copyright (C) 2018 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# +# Translators: +# Mohammed Shannaq , 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-09-09 10:57+0000\n" +"Last-Translator: Mohammed Shannaq \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" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.6.0\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "لا يمكن العثور على المجلد المصدر (%s)" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "لا يمكن ان يكون المجلد المصدر والمجلد الهدف متطابقين" + +#: sphinx/application.py:191 +#, python-format +msgid "Running 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 "يحتاج هذا المشروع على الاقل الى الاصدار %s من Sphinx وبالتالي لا يمكن بناءه باستخدام الاصدار الحالي" + +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "صناعة مجلد المخرجات ..." + +#: sphinx/application.py:244 +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 +#, 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 +msgid "done" +msgstr "تم" + +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "غير متوفرة للرسائل الافتراضية المدمجة" + +#: sphinx/application.py:300 +msgid "loading pickled environment... " +msgstr "تحميل بيئة pickled ..." + +#: sphinx/application.py:306 +#, python-format +msgid "failed: %s" +msgstr "فشل: %s" + +#: sphinx/application.py:316 +msgid "No builder selected, using default: html" +msgstr "لم يتم اختيار نوع البناء، تم استخدام نوع البناء الافتراضي: html" + +#: sphinx/application.py:347 +msgid "succeeded" +msgstr "نجح" + +#: sphinx/application.py:347 +msgid "finished with problems" +msgstr "انتهى مع وجود مشاكل" + +#: sphinx/application.py:349 +#, python-format +msgid "build %s, %s warning." +msgstr "بناء %s، %sتحذير." + +#: sphinx/application.py:353 +#, python-format +msgid "build %s." +msgstr "بناء %s." + +#: sphinx/application.py:626 +#, python-format +msgid "" +"while setting up extension %s: node class %r is already registered, its " +"visitors will be overridden" +msgstr "" + +#: sphinx/application.py:724 +#, python-format +msgid "" +"while setting up extension %s: directive %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 "" + +#: sphinx/application.py:1268 +#, 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:1274 +#, 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:1285 +#, python-format +msgid "doing serial %s" +msgstr "" + +#: sphinx/config.py:212 +#, python-format +msgid "" +"cannot override dictionary config setting %r, ignoring (use %r to set " +"individual elements)" +msgstr "" + +#: sphinx/config.py:221 +#, python-format +msgid "invalid number %r for config value %r, ignoring" +msgstr "" + +#: sphinx/config.py:226 +#, python-format +msgid "cannot override config setting %r with unsupported type, ignoring" +msgstr "" + +#: sphinx/config.py:256 +#, python-format +msgid "unknown config value %r in override, ignoring" +msgstr "" + +#: sphinx/config.py:274 +#, python-format +msgid "No such config value: %s" +msgstr "" + +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 +#, python-format +msgid "Event %r already present" +msgstr "" + +#: sphinx/events.py:64 +#, python-format +msgid "Unknown event name: %s" +msgstr "حدث غير معروف: %s" + +#: sphinx/extension.py:55 +#, python-format +msgid "" +"The %s extension is required by needs_extensions settings, but it is not " +"loaded." +msgstr "" + +#: sphinx/extension.py:60 +#, 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 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:165 +#, 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" +msgstr "" + +#: sphinx/registry.py:132 +#, python-format +msgid "Builder class %s has no \"name\" attribute" +msgstr "" + +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 +#, python-format +msgid "source_parser for %r is already registered" +msgstr "" + +#: sphinx/registry.py:325 +#, python-format +msgid "Source parser for %s not registered" +msgstr "" + +#: sphinx/registry.py:343 +#, python-format +msgid "source_input for %r is already registered" +msgstr "" + +#: sphinx/registry.py:356 +#, python-format +msgid "source_input for %s not registered" +msgstr "" + +#: sphinx/registry.py:362 +#, python-format +msgid "Translatoro for %r already exists" +msgstr "" + +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 +#, 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 "" + +#: sphinx/registry.py:475 +#, python-format +msgid "Could not import extension %s" +msgstr "" + +#: sphinx/registry.py:478 +#, python-format +msgid "" +"extension %r has no setup() function; is it really a Sphinx extension " +"module?" +msgstr "" + +#: sphinx/registry.py:487 +#, 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 +#, 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 +#, python-format +msgid "Python Enhancement Proposals; PEP %s" +msgstr "" + +#: sphinx/theming.py:83 +#, python-format +msgid "theme %r doesn't have \"theme\" setting" +msgstr "" + +#: sphinx/theming.py:85 +#, python-format +msgid "theme %r doesn't have \"inherit\" setting" +msgstr "" + +#: sphinx/theming.py:91 +#, python-format +msgid "no theme named %r found, inherited by %r" +msgstr "" + +#: sphinx/theming.py:116 +#, python-format +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "" + +#: sphinx/theming.py:136 +#, 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 +#, python-format +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "" + +#: sphinx/theming.py:281 +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 +#, python-format +msgid "no theme named %r found (missing theme.conf?)" +msgstr "" + +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "بناء [mo]:" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 +msgid "Builtins" +msgstr "" + +#: sphinx/builders/changes.py:91 +msgid "Module level" +msgstr "" + +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "بناء [%s]" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 +#, python-format +msgid "%b %d, %Y" +msgstr "" + +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +msgid "General Index" +msgstr "" + +#: sphinx/builders/html.py:590 +msgid "index" +msgstr "" + +#: sphinx/builders/html.py:654 +msgid "next" +msgstr "التالي" + +#: sphinx/builders/html.py:663 +msgid "previous" +msgstr "السابق" + +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 +#, 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +msgid " (in " +msgstr "" + +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "الرجاء ادخال بعض النصوص" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 +msgid "Over dedent has detected" +msgstr "" + +#: sphinx/directives/code.py:95 +#, python-format +msgid "Invalid caption: %s" +msgstr "" + +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 +#, python-format +msgid "Cannot use both \"%s\" and \"%s\" options" +msgstr "" + +#: sphinx/directives/code.py:223 +#, python-format +msgid "Include file %r not found or reading it failed" +msgstr "" + +#: sphinx/directives/code.py:225 +#, 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 +#, python-format +msgid "Object named %r not found in include file %r" +msgstr "" + +#: sphinx/directives/code.py:289 +msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" +msgstr "" + +#: sphinx/directives/code.py:294 +#, python-format +msgid "Line spec %r: no lines pulled from include file %r" +msgstr "" + +#: sphinx/directives/other.py:169 +msgid "Section author: " +msgstr "" + +#: sphinx/directives/other.py:171 +msgid "Module author: " +msgstr "" + +#: sphinx/directives/other.py:173 +msgid "Code author: " +msgstr "" + +#: sphinx/directives/other.py:175 +msgid "Author: " +msgstr "" + +#: sphinx/domains/__init__.py:336 +#, 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 +msgid "Parameters" +msgstr "" + +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +msgid "Returns" +msgstr "" + +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 +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:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +msgid "function" +msgstr "" + +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +msgid "member" +msgstr "" + +#: sphinx/domains/c.py:260 +msgid "macro" +msgstr "" + +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +msgid "type" +msgstr "" + +#: sphinx/domains/c.py:262 +msgid "variable" +msgstr "" + +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:6283 +#, python-format +msgid "%s (C++ type)" +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 +msgid "class" +msgstr "" + +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 +msgid "concept" +msgstr "" + +#: sphinx/domains/cpp.py:6551 +msgid "enum" +msgstr "" + +#: sphinx/domains/cpp.py:6552 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/cpp.py:6617 +#, 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 +#, python-format +msgid "%s() (built-in function)" +msgstr "" + +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#, python-format +msgid "%s() (%s method)" +msgstr "" + +#: sphinx/domains/javascript.py:135 +#, python-format +msgid "%s() (class)" +msgstr "" + +#: sphinx/domains/javascript.py:137 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" + +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#, python-format +msgid "%s (%s attribute)" +msgstr "" + +#: sphinx/domains/javascript.py:205 +msgid "Arguments" +msgstr "" + +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#, python-format +msgid "%s (module)" +msgstr "" + +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +msgid "method" +msgstr "" + +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +msgid "data" +msgstr "" + +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 +msgid "module" +msgstr "" + +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 +msgid "Variables" +msgstr "" + +#: sphinx/domains/python.py:221 +msgid "Raises" +msgstr "" + +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#, python-format +msgid "%s() (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:435 +#, python-format +msgid "%s (built-in variable)" +msgstr "" + +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#, python-format +msgid "%s (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:456 +#, python-format +msgid "%s (built-in class)" +msgstr "" + +#: sphinx/domains/python.py:457 +#, python-format +msgid "%s (class in %s)" +msgstr "" + +#: sphinx/domains/python.py:494 +#, python-format +msgid "%s() (%s.%s method)" +msgstr "" + +#: sphinx/domains/python.py:506 +#, python-format +msgid "%s() (%s.%s static method)" +msgstr "" + +#: sphinx/domains/python.py:509 +#, python-format +msgid "%s() (%s static method)" +msgstr "" + +#: sphinx/domains/python.py:519 +#, python-format +msgid "%s() (%s.%s class method)" +msgstr "" + +#: sphinx/domains/python.py:522 +#, python-format +msgid "%s() (%s class method)" +msgstr "" + +#: sphinx/domains/python.py:532 +#, python-format +msgid "%s (%s.%s attribute)" +msgstr "" + +#: sphinx/domains/python.py:669 +msgid "Python Module Index" +msgstr "" + +#: sphinx/domains/python.py:670 +msgid "modules" +msgstr "" + +#: sphinx/domains/python.py:718 +msgid "Deprecated" +msgstr "" + +#: sphinx/domains/python.py:745 +msgid "class method" +msgstr "" + +#: sphinx/domains/python.py:746 +msgid "static method" +msgstr "" + +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 +msgid " (deprecated)" +msgstr "" + +#: sphinx/domains/rst.py:65 +#, python-format +msgid "%s (directive)" +msgstr "" + +#: sphinx/domains/rst.py:67 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:119 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:120 +msgid "role" +msgstr "" + +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 +#, python-format +msgid "environment variable; %s" +msgstr "" + +#: sphinx/domains/std.py:164 +#, 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 +#, python-format +msgid "%scommand line option; %s" +msgstr "" + +#: sphinx/domains/std.py:455 +msgid "glossary term" +msgstr "" + +#: sphinx/domains/std.py:456 +msgid "grammar token" +msgstr "" + +#: sphinx/domains/std.py:457 +msgid "reference label" +msgstr "" + +#: sphinx/domains/std.py:459 +msgid "environment variable" +msgstr "" + +#: sphinx/domains/std.py:460 +msgid "program option" +msgstr "" + +#: sphinx/domains/std.py:461 +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 +msgid "Module Index" +msgstr "" + +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "" + +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:85 +#, python-format +msgid "see %s" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:89 +#, python-format +msgid "see also %s" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +msgid "Symbols" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 +#, python-format +msgid "missing '+' or '-' in '%s' option." +msgstr "" + +#: sphinx/ext/doctest.py:148 +#, python-format +msgid "'%s' is not a valid option." +msgstr "" + +#: sphinx/ext/doctest.py:162 +#, python-format +msgid "'%s' is not a valid pyversion option" +msgstr "" + +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 +msgid "Graphviz directive cannot have both content and a filename argument" +msgstr "" + +#: sphinx/ext/graphviz.py:149 +#, python-format +msgid "External Graphviz file %r not found or reading it failed" +msgstr "" + +#: sphinx/ext/graphviz.py:155 +msgid "Ignoring \"graphviz\" directive without content." +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 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%s\n" +"[stdout]\n" +"%s" +msgstr "" + +#: sphinx/ext/graphviz.py:287 +#, 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 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#, 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 +#, python-format +msgid "" +"convert exited with error:\n" +"[stderr]\n" +"%s\n" +"[stdout]\n" +"%s" +msgstr "" + +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +msgid "Permalink to this equation" +msgstr "" + +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx.py:345 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +msgid "[source]" +msgstr "" + +#: sphinx/ext/todo.py:67 +msgid "Todo" +msgstr "" + +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 +msgid "<>" +msgstr "" + +#: sphinx/ext/todo.py:156 +#, python-format +msgid "(The <> is located in %s, line %d.)" +msgstr "" + +#: sphinx/ext/todo.py:165 +msgid "original entry" +msgstr "" + +#: sphinx/ext/viewcode.py:196 +msgid "[docs]" +msgstr "[المستندات]" + +#: sphinx/ext/viewcode.py:210 +msgid "Module code" +msgstr "" + +#: sphinx/ext/viewcode.py:216 +#, python-format +msgid "

Source code for %s

" +msgstr "" + +#: sphinx/ext/viewcode.py:242 +msgid "Overview: module code" +msgstr "" + +#: sphinx/ext/viewcode.py:243 +msgid "

All modules for which code is available

" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 +#, python-format +msgid "Bases: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1195 +#, 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 +msgid "Keyword Arguments" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 +msgid "Attention" +msgstr "" + +#: sphinx/locale/__init__.py:342 +msgid "Caution" +msgstr "" + +#: sphinx/locale/__init__.py:343 +msgid "Danger" +msgstr "" + +#: sphinx/locale/__init__.py:344 +msgid "Error" +msgstr "" + +#: sphinx/locale/__init__.py:345 +msgid "Hint" +msgstr "" + +#: sphinx/locale/__init__.py:346 +msgid "Important" +msgstr "" + +#: sphinx/locale/__init__.py:347 +msgid "Note" +msgstr "" + +#: sphinx/locale/__init__.py:348 +msgid "See also" +msgstr "" + +#: sphinx/locale/__init__.py:349 +msgid "Tip" +msgstr "" + +#: sphinx/locale/__init__.py:350 +msgid "Warning" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +msgid "continued from previous page" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:28 +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:81 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 "البحث ضمن %(docstitle)s" + +#: 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 "© Copyright %(copyright)s." +msgstr "© حقوق النشر %(copyright)s" + +#: sphinx/themes/basic/layout.html:203 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "© حقوق النشر %(copyright)s" + +#: 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 Sphinx " +"%(sphinx_version)s." +msgstr "" + +#: sphinx/themes/basic/opensearch.xml:4 +#, python-format +msgid "Search %(docstitle)s" +msgstr "البحث %(docstitle)s" + +#: 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:290 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js:292 +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:195 sphinx/writers/html.py:403 +#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 +#: sphinx/writers/html5.py:354 +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 +msgid "Permalink to this definition" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js:234 +msgid "Hide Search Matches" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:121 +msgid "Searching" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:126 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:294 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:347 +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:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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 "" + +#: sphinx/transforms/post_transforms/__init__.py:175 +#, python-format +msgid "%r reference target not found: %%(target)s" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 +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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 image" +msgstr "" + +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +msgid "Permalink to this toctree" +msgstr "" + +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 +msgid "Release" +msgstr "" + +#: sphinx/writers/latex.py:531 +#, 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 +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 +msgid "document title is not a single Text node" +msgstr "" + +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#, python-format +msgid "[image: %s]" +msgstr "" + +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +msgid "[image]" +msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 0fffc9ed5..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sphinx %(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": "\u09b8\u09c2\u099a\u09c0\u09aa\u09a4\u09cd\u09b0", "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 +Documentation.addTranslations({"locale": "bn", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sphinx %(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 eff8da929..4ba25bb94 100644 Binary files a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 8c0ef3f1e..6c6fa004f 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "বিল্টইন সমূহ" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "মডিউল লেভেল" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "সাধারণ ইনডেক্স" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "ইনডেক্স" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "পরবর্তী" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "পূর্ববর্তী" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "(-" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "অনুচ্ছেদ লেখক:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "মডিউল লেখক:" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "লেখক:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "প্যারামিটার" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "রিটার্নস" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "রিটার্ন টাইপ" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C ফাংশন)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C মেম্বার)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C ম্যাক্রো)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C টাইপ)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C ভ্যারিয়েবল)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "ফাংশন" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "%s ভার্সনে নতুন" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "%s ভার্সনে পরিবর্তিত" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "%s ভার্সন থেকে ডেপ্রিকেটেড" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ টাইপ)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ মেম্বার)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ ফাংশন)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ ক্লাসে)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "ক্লাস" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (ক্লাসে)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (মডিউল)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "মেথড" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "এ্যট্রিবিউট" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "মডিউল" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "কিওয়ার্ড" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "অপারেটর" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "অবজেক্ট" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "এক্সেপশন" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "স্ট্যাটমেন্ট" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "বিল্ট-ইন ফাংশন" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "রেইজেস" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s (%s.%s মেথড)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s (%s.%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s ক্লাস মেথড)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s এ্যট্রিবিউট)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "এক্সেপশন" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -722,58 +2235,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sকমান্ড লাইন অপশন; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "শব্দকোষ" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "ব্যকরণ টোকেন" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "প্রোগ্রাম অপশন" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "মডিউল ইনডেক্স" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "অনুসন্ধান পাতা" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "অসমাপ্ত কাজ" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` এর উপনাম" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "দৃষ্টি আকর্ষণ" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "সতর্কীকরণ" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "বিপজ্জনক" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "ভুল (এরর)" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "আভাস" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "গুরুত্বপূর্ণ" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "নোট" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "আরও দেখুন" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "পরামর্শ" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "সতর্কতা" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "%s ভার্সনে নতুন" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "%s ভার্সনে পরিবর্তিত" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "%s ভার্সন থেকে ডেপ্রিকেটেড" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "কিওয়ার্ড" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "অপারেটর" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "অবজেক্ট" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "স্ট্যাটমেন্ট" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "বিল্ট-ইন ফাংশন" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "পূর্ববর্তী পাতা হতে চলমান" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "সূচীপত্র" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "অনুসন্ধান" @@ -1117,35 +3071,35 @@ msgstr "খুব বড় হতে পারে" msgid "Navigation" msgstr "নেভিগেশন" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s এর মধ্যে খুঁজুন" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "এই ডকুমেন্ট সম্পর্কে" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "কপিরাইট" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "%(last_updated)s সর্বশেষ পরিবর্তন করা হয়েছে।" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "পরবর্তী টপিক" msgid "next chapter" msgstr "পরবর্তী অধ্যায়" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "অনুসন্ধান করার জন্য অনুগ্রহপূর্বক জাভাস্ক্রিপ্ট \n সক্রিয় করুন।" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1187,20 +3141,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "এখান থেকে এই নথিগুলোতে আপনি অনুসন্ধান করতে পারবেন। \n আপনার কাঙ্ক্ষিত শব্দসমূহ নিচের বাক্সে লিখুন এবং \"অনুসন্ধান\" বাটনে ক্লিক করুন।\n উল্লেখ্য, সকল শব্দসমূহের উপস্থিতি নিয়ে অনুসন্ধান করা হবে। যেসব পাতায় সকল\n শব্দ নেই সেগুলো বাদ দেয়া হবে।" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "খুঁজুন" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "অনুসন্ধানের ফলাফল" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "C API পরিবর্তন" msgid "Other changes" msgstr "অন্যান্য পরিবর্তন" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "এই শিরোনামের পার্মালিঙ্ক" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "এই সংজ্ঞার পার্মালিঙ্ক" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "অনুসন্ধানের ম্যাচগুলো লুকান" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1288,68 +3242,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "রিলিজ" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "পাদটীকা" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[ছবি]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 e3cd6b736..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Creat amb Sphinx %(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": "Taula de Contingut", "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 +Documentation.addTranslations({"locale": "ca", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Creat amb Sphinx %(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 6b6b526ca..bfd72b3a9 100644 Binary files a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index ff69d00d3..3affbd436 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Mòduls Interns" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Nivell de mòdul" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índex General" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "índex" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "següent" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "anterior" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s documentació" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (a " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Autor de la secció:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Autor del mòdul: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Paràmetres" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Tipus de retorn" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (funció de C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (membre de C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (macro de C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (tipus de C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (variable de C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funció" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "membre" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tipus" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variable" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Novetat de la versió %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Canviat a la versió %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Obsolet desde la versió %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (tipus de C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (membre de C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (funció de C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (class de C++)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funció interna)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (mètode %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (class)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (mòdul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "mòdul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "paraula clau" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operador" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objecte" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "excepció" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "sentència" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "funció interna" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Llença" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (al mòdul %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable interna)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (al mòdul %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (class a %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (mètode %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (mètode estàtic %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (mètode estàtic %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribut %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "mòduls" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Obsolet" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "excepció" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "mètode estàtic" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsolet)" @@ -722,58 +2235,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "variable d'entorn; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "opció de línia de comandes %s; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "variable d'entorn" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Índex de Mòduls" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pàgina de Cerca" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "vegeu %s" msgid "see also %s" msgstr "vegeu també %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Pendent" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "àlies de :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Atenció" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Compte" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Perill" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Error" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Suggerència" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Vegeu també" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Truc" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Avís" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Novetat de la versió %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Canviat a la versió %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Obsolet desde la versió %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "paraula clau" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operador" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objecte" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "sentència" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "funció interna" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "ve de la pàgina anterior" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Continua a la pàgina següent" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Taula de Contingut" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Cerca" @@ -1117,35 +3071,35 @@ msgstr "pot ser gegant" msgid "Navigation" msgstr "Navegació" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Cerca dins de %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Quant a aquests documents" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Última actualització el %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "Tema següent" msgid "next chapter" msgstr "capítol següent" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Activa JavaScript per utilitzar la funcionalitat\nde cerca." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1187,20 +3141,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "cerca" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Resultats de la Cerca" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "Canvis a la API de C" msgid "Other changes" msgstr "Altres canvis" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Link permanent a aquest títol" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Link permanent a aquesta definició" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Oculta Resultats de Cerca" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1288,68 +3242,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Versió" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[imatge]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 3689e78dc..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Vytvo\u0159eno pomoc\u00ed Sphinx %(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": "Obsah", "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) ? 0 : (n>=2 && n<=4) ? 1 : 2"}); \ No newline at end of file +Documentation.addTranslations({"locale": "cs", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Vytvo\u0159eno pomoc\u00ed Sphinx %(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 5d4825bb6..e03265956 100644 Binary files a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 3b91c7f1d..f76d10bac 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,107 +9,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -117,7 +143,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -125,169 +151,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Obr. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tabulka %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Výpis %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Obr. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tabulka %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Výpis %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -319,6 +465,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -340,368 +491,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Vestavěné funkce" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Úroveň modulu" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Obecný rejstřík" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "rejstřík" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "další" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "předchozí" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "Dokumentace pro %s %s" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (v " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Autor sekce: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Autor modulu: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Autor kódu:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Vrací" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Typ návratové hodnoty" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C funkce)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C člen)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C makro)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C typ)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C proměnná)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funkce" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "proměnná" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Nové ve verzi %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Změněno ve verzi %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Zastaralé od verze %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Vyvolá" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ typ)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ člen)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funkce)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ třída)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "třída" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (třída)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, 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:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "klíčové slovo" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operátor" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objekt" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "výjimka" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "příkaz" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "vestavěná funkce" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Proměnné" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (vestavěná proměnná)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (vestavěná třída)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (třída v %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metoda %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statická metoda %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (třídní metoda %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (třídní metoda %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribut %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Rejstřík modulů Pythonu" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "výjimka" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "třídní metoda" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (zastaralé)" @@ -723,58 +2236,152 @@ msgstr "direktiva" msgid "role" msgstr "role" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "proměnná prostředí; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%svolba příkazového řádku; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "termín v glosáři" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "token gramatiky" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "referenční návěstí" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "proměnná prostředí" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "volba programu" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Rejstřík modulů" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Vyhledávací stránka" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -785,46 +2392,244 @@ msgstr "viz %s" msgid "see also %s" msgstr "viz také %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Symboly" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -834,7 +2639,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -844,26 +2649,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -873,171 +2684,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[zdroj]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "původní záznam" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[dokumentace]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Kód modulu" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Zdrojový kód pro %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Přehled: kód modulu" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Všechny moduly s dostupným kódem

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias třídy :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Výstraha" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Upozornění" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Nebezpečí" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Chyba" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Rada" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Důležité" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Poznámka" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Viz také" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Varování" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Nové ve verzi %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Změněno ve verzi %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Zastaralé od verze %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "klíčové slovo" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operátor" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objekt" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "příkaz" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "vestavěná funkce" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "pokračujte na předchozí stránce" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Pokračujte na další stránce" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Obsah" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Vyhledávání" @@ -1118,35 +3072,35 @@ msgstr "může být obrovský" msgid "Navigation" msgstr "Navigace" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Prohledat %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "O těchto dokumentech" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Veškerá práva vyhrazena" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Aktualizováno dne %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1174,13 +3128,13 @@ msgstr "Další téma" msgid "next chapter" msgstr "další kapitola" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Pro podporu vyhledávání aktivujte JavaScript." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1188,20 +3142,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "hledat" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Výsledky vyhledávání" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1243,36 +3197,36 @@ msgstr "Změny API" msgid "Other changes" msgstr "Ostatní změny" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Trvalý odkaz na tento nadpis" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Trvalý odkaz na tuto definici" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Skrýt výsledky vyhledávání" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Probíhá vyhledání" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Vyhledávání se připravuje..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", v " @@ -1289,68 +3243,223 @@ msgstr "Sbalit boční lištu" msgid "Contents" msgstr "Obsah" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Permalink k této tabulce" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Permalink k tomuto kódu" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Permalink k tomuto obrázku" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +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:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Poznámky pod čarou" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "[obrázek: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[obrázek]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 de417a299..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Cr\u8c37wyd gan ddefnyddio Sphinx %(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": "Tabl Cynnwys", "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 +Documentation.addTranslations({"locale": "cy", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Cr\u8c37wyd gan ddefnyddio Sphinx %(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 a5e95eb60..58f631f76 100644 Binary files a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 5e34a2db5..9aaa811ce 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,107 +9,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: cy\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -117,7 +143,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -125,169 +151,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Ffig. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tabl %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Listing %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Ffig. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tabl %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Listing %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -319,6 +465,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -340,368 +491,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Lefel modiwl" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indecs cyffredinol" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "indecs" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "nesaf" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "blaenorol" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "Dogfennaeth %s %s " -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (yn " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Awdur yr adran:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Awdur y fodiwl:" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Awdur y cod:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Awdur:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Paramedrau" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "ffwythiant" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "aelod" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Newydd yn fersiwn %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Wedi newid yn fersiwn %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Dibrisiwyd ers fersiwn %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (newidyn byd-eang neu cysonyn)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modiwl" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "allweddair" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "gweithredydd" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "gwrthrych" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "datganiad" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "ffwythiant built-in" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -723,58 +2236,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Indecs Modiwlau" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Tudalen Chwilio" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -785,46 +2392,244 @@ msgstr "gweler %s" msgid "see also %s" msgstr "gweler hefyd %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Symbolau" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -834,7 +2639,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -844,26 +2649,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[graff: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[graff]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -873,171 +2684,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(yn %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[ffynhonnell]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "eitem wreiddiol" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Cod y modiwl" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Cod ffynhonnell ar gyfer %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Trosolwg: cod y modiwl" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Holl fodiwlau lle mae'r cod ar gael

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Sylw" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Gofal" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Perygl" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Gwall" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Awgrym" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Pwysig" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Nodyn" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Gweler hefyd" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Awgrym" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Rhybudd" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Newydd yn fersiwn %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Wedi newid yn fersiwn %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Dibrisiwyd ers fersiwn %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "allweddair" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "gweithredydd" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "gwrthrych" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "datganiad" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "ffwythiant built-in" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "wedi'i barhau o'r tudalen blaenorol" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Yn parhau ar y tudalen nesaf" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Tabl Cynnwys" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Chwilio" @@ -1118,35 +3072,35 @@ msgstr "gall fod yn enfawr" msgid "Navigation" msgstr "Llywio" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Chwilio o fewn %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Ynglŷn â'r dogfennau hyn" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Hawlfraint" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Diweddarwyd yn ddiwethaf ar %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1174,13 +3128,13 @@ msgstr "Pwnc nesaf" msgid "next chapter" msgstr "pennod nesaf" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Trwoch JavaScript ymlaen i alluogi'r chwilio." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1188,20 +3142,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "chwilio" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Canlyniadau chwilio" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1243,36 +3197,36 @@ msgstr "Newidiadau i'r C-API" msgid "Other changes" msgstr "Newidiadau arall" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Permalink i'r pennawd hwn" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Permalink i'r diffiniad hwn" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Cuddio Canlyniadau Chwilio" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Yn chwilio" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Paratoi chwilio..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", yn " @@ -1289,68 +3243,223 @@ msgstr "Cyfangu'r bar ochr" msgid "Contents" msgstr "Cynnwys" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Permalink i'r tabl hwn" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Permalink i'r cod hwn" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Permalink i'r ddelwedd hon" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Permalink i'r toctree hwn" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Rhyddhad" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Troednodiadau" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "[delwedd: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[delwedd]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 5310acaad..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Bygget med Sphinx %(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": "Indholdsfortegnelse", "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 +Documentation.addTranslations({"locale": "da", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Bygget med Sphinx %(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 026eff3c1..e1e37b42c 100644 Binary files a/sphinx/locale/da/LC_MESSAGES/sphinx.mo and b/sphinx/locale/da/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 693ea66b0..2eb3df65a 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -10,107 +10,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -118,7 +144,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -126,169 +152,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "figur %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "tabel %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Viser %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "figur %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "tabel %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Viser %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -320,6 +466,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -341,368 +492,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Indbyggede" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Modulniveau" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d. %b, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Generelt indeks" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "indeks" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "næste" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "forrige" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentation" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (i " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Afsnitsforfatter: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Modulforfatter: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Kodeforfatter: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Forfatter: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Returnerer" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Returtype" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C-funktion)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C-medlem)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C-makro)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C-type)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "type" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variabel" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Ny i version %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Ændret i version %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Forældet siden version %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Template-parametre" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++-type)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++-medlem)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++-funktion)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++-klasse)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++-optælling)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "optæl" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "optælling" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (indbygget funktion)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (metode i %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut i %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Parametre" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "nøgleord" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operator" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objekt" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "undtagelse" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "erklæring" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "indbygget funktion" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variable" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Rejser" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modulet %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (indbygget variabel)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (i modulet %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (indbygget klasse)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metode i %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statisk metode i %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statisk metode i %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (klassemetode i %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassemetode i %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (attribut i %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python-modulindeks" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Forældet" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "undtagelse" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (forældet)" @@ -724,58 +2237,152 @@ msgstr "direktiv" msgid "role" msgstr "rolle" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "miljøvariabel; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%skommandolinjetilvalg; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "begreb i ordliste" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "grammatisk element" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "referenceetiket" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "programtilvalg" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Modulindeks" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søgeside" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -786,46 +2393,244 @@ msgstr "se %s" msgid "see also %s" msgstr "se også %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Symboler" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -835,7 +2640,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -845,26 +2650,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -874,171 +2685,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(i %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[kilde]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Det <> befinder sig i %s, linje %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "oprindeligt punkt" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[dok]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Modulkode" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Kildekode for %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Oversigt: modulkode" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Alle moduler, der er kode tilgængelig for

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias for :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Vær opmærksom" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Forsigtig" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Fare" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Fejl" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Fif" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Vigtigt" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Bemærk" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Se også" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Advarsel" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Ny i version %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Ændret i version %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Forældet siden version %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "nøgleord" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operator" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objekt" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "erklæring" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "indbygget funktion" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "fortsat fra forrige side" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Fortsættes på næste side" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Indholdsfortegnelse" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Søg" @@ -1119,35 +3073,35 @@ msgstr "kan være enormt" msgid "Navigation" msgstr "Navigation" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Søg i %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Om disse dokumenter" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Ophavsret" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Sidst opdateret %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1175,13 +3129,13 @@ msgstr "Næste emne" msgid "next chapter" msgstr "næste kapitel" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1189,20 +3143,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "søg" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Søgeresultater" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1244,36 +3198,36 @@ msgstr "Ændringer i C-API" msgid "Other changes" msgstr "Andre ændringer" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Permalink til denne overskrift" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Permalink til denne definition" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Skjul søgeresultater" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Søger" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Forbereder søgning..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", i" @@ -1290,68 +3244,223 @@ msgstr "Sammenfold sidebjælke" msgid "Contents" msgstr "Indhold" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Permahenvisning til denne tabel" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Permahenvisning til denne kode" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Permahenvisning til dette billede" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Permahenvisning til dette toctree" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Udgave" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Fodnoter" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "[billede: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[billede]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 ddbeb95bc..d8527672f 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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Mit Sphinx %(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": "Inhalt", "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 +Documentation.addTranslations({"locale": "de", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Mit Sphinx %(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)"}); \ 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 a5fc48e2c..a34b51f6a 100644 Binary files a/sphinx/locale/de/LC_MESSAGES/sphinx.mo and b/sphinx/locale/de/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 0649d7833..6b701fed1 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -4,291 +4,438 @@ # # Translators: # Georg Brandl , 2013-2015 -# Lukas Prokop , 2016-2017 +# Jean-François B. , 2018 +# Lukas Prokop , 2016-2018 # Michael Hierweck , 2017 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\n" -"Last-Translator: Takeshi KOMIYA \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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, 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 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "Kann Quellverzeichnis nicht finden (%s)" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "Quellverzeichnis und Zielverzeichnis können nicht identisch sein" + +#: sphinx/application.py:191 +#, python-format +msgid "Running Sphinx v%s" +msgstr "Sphinx v%s in Verwendung" + +#: sphinx/application.py:214 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dieses Projekt benötigt Version %s oder später und kann daher nicht gebaut werden." -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "Erstelle Ausgabeverzeichnis…" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nicht gefunden, daher ignoriert." -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "erledigt" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +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:289 -msgid "not yet created" -msgstr "Noch nicht erstellt" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "Fehlgeschlagen: %s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "Kein builder ausgewählt, verwende 'html' per default" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "abgeschlossen" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "mit Problemen beendet" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "Konfigurationswert %r bereits gesetzt" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, 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 "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:696 +#: sphinx/application.py:1274 #, 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 "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 +#, python-format +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:133 -#, python-format -msgid "Section %s" -msgstr "Abschnitt %s" - -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Abb. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tab. %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Quellcode %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "Ungültige Nummer %r for Konfiguration %r, wird ignoriert" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" +msgstr "Keine solche Konfigurationseinstellung: %s" + +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "Konfigurationswert %r bereits gesetzt" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Abschnitt %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Abb. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tab. %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Quellcode %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "Event %r bereits verfügbar" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "Unbekannter Event name: %s" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" +msgstr "Pygments Lexer Name %r ist unbekannt" + +#: sphinx/highlighting.py:165 +#, python-format +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:75 +#: sphinx/io.py:209 #, python-format -msgid "Builder %r already exists (in module %s)" -msgstr "" - -#: sphinx/registry.py:89 -#, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "Ursprüngliche Ausnahme:\n" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -320,6 +467,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -341,368 +493,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Modulebene" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Stichwortverzeichnis" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "Index" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "weiter" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "zurück" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s Dokumentation" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (in " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Autor des Abschnitts: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Autor des Moduls: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Autor des Quellcode: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s-%s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Rückgabe" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Rückgabetyp" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C-Funktion)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C-Member)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C-Makro)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C-Typ)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C-Variable)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "Funktion" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "Member" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "Makro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "Typ" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "Variable" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Neu in Version %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Geändert in Version %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Veraltet ab Version %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Template Parameter" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Wirft" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++-Typ)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++-Member)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++-Funktion)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++-Klasse)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++-Enumerator)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "Klasse" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "Aufzählung" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "Enumerator" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (Standard-Funktion)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (Methode von %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (Klasse)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globale Variable oder Konstante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (Attribut von %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Parameter" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (Modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "Methode" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "Wert" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "Attribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "Modul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "Schlüsselwort" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "Operator" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "Objekt" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "Exception" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "Anweisung" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "Builtin-Funktion" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variablen" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Verursacht" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (im Modul %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (Standard-Variable)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (in Modul %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (Builtin-Klasse)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (Klasse in %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (Methode von %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statische Methode von %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische Methode von %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (Klassenmethode von %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (Klassenmethode von %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (Attribut von %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python-Modulindex" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "Module" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Veraltet" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "Exception" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "Klassenmethode" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statische Methode" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (veraltet)" @@ -724,58 +2238,152 @@ msgstr "Direktive" msgid "role" msgstr "Rolle" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "Umgebungsvariable; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sKommandozeilenoption; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "Glossareintrag" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "Grammatik-Token" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "Referenz-Label" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "Umgebungsvariable" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "Programmoption" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Suche" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -786,46 +2394,244 @@ msgstr "siehe %s" msgid "see also %s" msgstr "siehe auch %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Sonderzeichen" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -835,7 +2641,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -845,26 +2651,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[Diagramm: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[Diagramm]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -874,171 +2686,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[Quellcode]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Zu tun" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Der <> steht in %s, Zeile %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "ursprüngliche Eintrag" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[Doku]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Modul-Quellcode" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Quellcode für %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Überblick: Modul-Quellcode" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Alle Module, für die Quellcode verfügbar ist

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "Alias von :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Achtung" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Vorsicht" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Gefahr" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Fehler" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Hinweis" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Wichtig" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Bemerkung" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Siehe auch" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Tipp" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Warnung" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Neu in Version %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Geändert in Version %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Veraltet ab Version %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "Schlüsselwort" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "Operator" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "Objekt" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "Anweisung" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "Builtin-Funktion" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "Fortsetzung der vorherigen Seite" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "Inhalt" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Suche" @@ -1119,35 +3074,35 @@ msgstr "kann groß sein" msgid "Navigation" msgstr "Navigation" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Suche in %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Über dieses Dokument" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Zuletzt aktualisiert am %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1175,13 +3130,13 @@ msgstr "Nächstes Thema" msgid "next chapter" msgstr "nächstes Kapitel" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1189,20 +3144,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "suchen" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Suchergebnisse" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1244,36 +3199,36 @@ msgstr "C API-Änderungen" msgid "Other changes" msgstr "Andere Änderungen" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Link zu dieser Überschrift" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Link zu dieser Definition" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Suchergebnisse ausblenden" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Suchen" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Suche wird vorbereitet..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", in " @@ -1290,68 +3245,223 @@ msgstr "Seitenleiste einklappen" msgid "Contents" msgstr "Inhalt" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Link zu dieser Tabelle" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Link zu diesem Quellcode" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Link zu diesem Bild" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Permanenter Link zu diesem Inhaltsverzeichnis" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Release" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +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:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Fußnoten" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "[Bild: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[Bild]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 4c8ffaa9f..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03c4\u03bf Sphinx %(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": "\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", "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 +Documentation.addTranslations({"locale": "el", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03c4\u03bf Sphinx %(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 6fbbfcc24..39bb664f0 100644 Binary files a/sphinx/locale/el/LC_MESSAGES/sphinx.mo and b/sphinx/locale/el/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 06211f80e..2f0ec8bc1 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Σχήμα %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Πίνακας %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Λίστα %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Σχήμα %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Πίνακας %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Λίστα %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Ενσωματωμένες λειτουργίες" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Επίπεδο μονάδας λειτουργίας" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d de %B de %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Κεντρικό Ευρετήριοο" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "ευρετήριο" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "επόμενο" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "προηγούμενο" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "Τεκμηρίωση του %s - %s" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (σε " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Συντάκτης τμήματος: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Συντάκτης μονάδας: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Συντάκτης κώδικα: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Συντάκτης: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Παράμετροι" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Επιστρέφει" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Επιστρεφόμενος τύπος" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (συνάρτηση C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (μέλος C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (μακροεντολή C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (τύπος C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (μεταβλητή C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "συνάρτηση" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "μέλος" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "μακροεντολή" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "τύπος" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "μεταβλητή" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Νέο στην έκδοση %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Άλλαξε στην έκδοση %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Αποσύρθηκε στην έκδοση %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Προκαλεί" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (τύπος C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (μέλος C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (συνάρτηση C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (κλάση C++)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (enumarator της C++)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "κλάση" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ενσωματωμένη συνάρτηση)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (μέθοδος της %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (κλάση)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (καθολική μεταβλητή ή σταθερά)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (ιδιότητα της %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Παράμετροι" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (μονάδα)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "μέθοδος" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "δεδομένα" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "ιδιότητα" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "μονάδα" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "λέξη κλειδί" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "τελεστής" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "αντικείμενο" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "εξαίρεση" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "δήλωση" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "ενσωματωμένη συνάρτηση" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Μεταβλητές" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Προκαλεί" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (στη μονάδα %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (ενσωματωμένη μεταβλητή)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (στη μονάδα %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (ενσωματωμένη κλάση)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (κλάση σε %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (μέθοδος %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (στατική μέθοδος %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (στατική μέθοδος της %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (μέθοδος κλάσης %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (μέθοδος κλάσης της %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (ιδιότητα της %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Ευρετήριο Μονάδων της Python" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "μονάδες" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Αποσύρθηκε" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "εξαίρεση" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "μέθοδος της κλάσης" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "στατική μέθοδος" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (αποσύρθηκε)" @@ -722,58 +2235,152 @@ msgstr "οδηγία" msgid "role" msgstr "ρόλος" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "μεταβλητή περιβάλλοντος; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sπαράμετρος γραμμής εντολών; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "γλωσσάρι" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "γραμματική ένδειξη" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "ετικέτα αναφοράς" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "μεταβλητή περιβάλλοντος" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "επιλογή προγράμματος" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Ευρετήριο μονάδων" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Σελίδα αναζήτησης" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "δείτε %s" msgid "see also %s" msgstr "δείτε επίσης %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Σύμβολα" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[γράφημα: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[γράφημα]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(στη %s έκδοση %s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[πηγή]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Εκκρεμότητα" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "αρχική εγγραφή" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[τεκμηρίωση]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Κώδικας μονάδας" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Πηγαίος κώδικας για το %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Επισκόπηση: κώδικας της μονάδας" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Όλες οι μονάδες για τις οποίες υπάρχει διαθέσιμος κώδικας

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "ψευδώνυμο της :κλάσης:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Προσοχή" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Προσοχή" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Κίνδυνος" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Σφάλμα" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Συμβουλή" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Σημαντικό" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Σημείωση" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Δείτε επίσης" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Πρακτική συμβουλή" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Προειδοποίηση" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Νέο στην έκδοση %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Άλλαξε στην έκδοση %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Αποσύρθηκε στην έκδοση %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "λέξη κλειδί" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "τελεστής" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "αντικείμενο" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "δήλωση" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "ενσωματωμένη συνάρτηση" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "συνεχίζεται από την προηγούμενη σελίδα" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "Πίνακας Περιεχομένων" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Αναζήτηση" @@ -1117,35 +3071,35 @@ msgstr "μπορεί να είναι τεράστιο" msgid "Navigation" msgstr "Πλοήγηση" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Αναζήτηση στο %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Σχετικά με αυτά τα κείμενα" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Τελευταία ενημέρωση στις %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "Επόμενο θέμα" msgid "next chapter" msgstr "επόμενο κεφάλαιο" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Παρακαλώ, ενεργοποιήστε τη JavaScript για να είναι δυνατή η λειτουργία\n αναζήτησης." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1187,20 +3141,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Από εδώ μπορείτε να αναζητήσετε σε αυτά τα κείμενα. Εισάγετε τις λέξεις\n αναζήτησης στο παρακάτω πλαίσιο και πατήστε \"αναζήτηση\". Σημειώστε ότι η λειτουργία \n αναζήτησης θα αναζητήσει αυτόματα για όλες τις λέξεις. Σελίδες\n που περιέχουν λιγότερες λέξεις δε θα εμφανιστούν στη λίστα αποτελεσμάτων." -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "αναζήτηση" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Αποτελέσματα Αναζήτησης" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "Αλλαγές στο API της C" msgid "Other changes" msgstr "Άλλες αλλαγές" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Μόνιμος σύνδεσμος σε αυτήν την κεφαλίδα" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Μόνιμος σύνδεσμος σε αυτόν τον ορισμό" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Απόκρυψη Ευρεθέντων Αναζητήσεων" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Εκτελείται η αναζήτηση" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Προετοιμασία αναζήτησης..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Η αναζήτηση ολοκληρώθηκε, βρέθηκε/αν %s σελίδα/ες με βάση τους όρους αναζήτησης." -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", στο " @@ -1288,68 +3242,223 @@ msgstr "Κλείσιμο πλαϊνής μπάρας" msgid "Contents" msgstr "Περιεχόμενα" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Απευθείας σύνδεσμος σε αυτόν τον κώδικα" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Απευθείας σύνδεσμος σε αυτήν την εικόνα" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα περιεχομένων" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Δημοσίευση" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Σημειώσεις υποσέλιδου" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "[εικόνα: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[εικόνα]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 30f857ba0..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": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "A\u016dtora rajto", "Created using Sphinx %(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 +Documentation.addTranslations({"locale": "eo", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "A\u016dtora rajto", "Created using Sphinx %(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 5c50a5081..bcc58ad7c 100644 Binary files a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 588c00e94..e8674c527 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indico universala" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "indico" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "sekva" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "antaŭa" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentaro" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Aŭtoro:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametroj" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funkcio" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "nomaĵo" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "klaso" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (klaso)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "datenoj" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "escepto" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "escepto" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -722,58 +2235,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "vidu %s" msgid "see also %s" msgstr "vidu ankaŭ %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Simboloj" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Eraro" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "" @@ -1117,35 +3071,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Aŭtora rajto" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "Sekva temo" msgid "next chapter" msgstr "sekvo ĉapitro" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1187,20 +3141,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "serĉu" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1288,68 +3242,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 31f16923e..477c17d32 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", "© Copyright %(copyright)s.": "© Derechos de autor %(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 Sphinx %(sphinx_version)s.": "Creado con Sphinx %(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 Contenidos", "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 +Documentation.addTranslations({"locale": "es", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Derechos de autor %(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 Sphinx %(sphinx_version)s.": "Creado con Sphinx %(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)"}); \ 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 0ede42548..d3b660885 100644 Binary files a/sphinx/locale/es/LC_MESSAGES/sphinx.mo and b/sphinx/locale/es/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 2c4072ef8..7f220b240 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -4,113 +4,139 @@ # # Translators: # Guillem Borrell , 2011 -# Leonardo J. Caballero G. , 2013-2017 +# Leonardo J. Caballero G. , 2013-2018 # Takeshi KOMIYA , 2016 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\n" -"Last-Translator: Takeshi KOMIYA \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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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 "Este proyecto necesita al menos Sphinx v%s y por lo tanto no se puede construir con esta versión." -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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' 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:221 +#: 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:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "hecho" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "cargando el ambiente pickled..." -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "aún no creado" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "fallo: %s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "Ningún constructor seleccionado, utilizando el valor predeterminado: html" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "éxitoso" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "finalizo con problemas" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." -msgstr "" +msgstr "construir %s, %s advertencia." -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "construir %s." -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "Valor de configuración %r ya presente" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, 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" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "Valor para la clave %r debe ser una tupla de función (visitar, salir)" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, 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" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "mientras se configura la extensión %s: papel %r ya está registrada, se pueden sustituir" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -118,177 +144,297 @@ 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:696 +#: sphinx/application.py:1274 #, 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 "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 +#, python-format +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:133 -#, python-format -msgid "Section %s" -msgstr "Sección %s" - -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Figura %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tabla %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Lista %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, 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:258 +#: sphinx/config.py:221 #, 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:263 +#: sphinx/config.py:226 #, 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:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuración desconocido %r en anulación, ignorando" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "No hay tal valor de configuración: %s" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "Valor de configuración %r ya presente" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Sección %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Figura %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tabla %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Lista %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "Evento %r ya presente" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "Nombre de evento desconocido: %s" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:165 +#, 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" +msgstr "" + +#: sphinx/registry.py:132 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Constructor clase %s no tiene ningún atributo \"name\"" -#: sphinx/registry.py:75 +#: sphinx/registry.py:134 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Constructor %r ya existe (en el módulo %s)" -#: sphinx/registry.py:89 +#: sphinx/registry.py:148 #, 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:97 +#: sphinx/registry.py:156 #, python-format msgid "Builder name %s not registered" msgstr "Nombre de constructor %s no registrado" -#: sphinx/registry.py:105 +#: sphinx/registry.py:164 #, python-format msgid "domain %s already registered" msgstr "dominio %s ya esta registrado" -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 #, python-format msgid "domain %s not yet registered" msgstr "dominio %s no esta registrado" -#: sphinx/registry.py:132 +#: sphinx/registry.py:202 #, python-format -msgid "new domain not a subclass of registered %s domain" -msgstr "nuevo dominio no es una subclase de dominio registrado %s" +msgid "The %r directive is already registered to %d domain" +msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser para %r ya está registrado" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" -msgstr "" +msgstr "Analizador de fuentes para %s no registrado" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" -msgstr "" +msgstr "source_input para %r ya está registrado" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" -msgstr "" +msgstr "source_input para %s no registrado" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, 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:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "Excepción original:\n" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "No puede importar la extensión %s" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, 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:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -320,10 +466,15 @@ msgstr "no encontrado ningún tema llamado %r, heredado por %r" 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 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." -msgstr "" +msgstr "Extensión de tema %r no responde correctamente." #: sphinx/theming.py:265 #, python-format @@ -341,368 +492,1730 @@ msgstr "sphinx_rtd_theme ya no es una dependencia difícil desde la versión 1.4 msgid "no theme named %r found (missing theme.conf?)" msgstr "sin tema llamado %r encontrado (¿falta el archivo theme.conf?)" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Funciones incorporadas" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Nivel de módulo" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d de %B de %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice General" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "índice" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "siguiente" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "anterior" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "documentación de %s - %s" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (en " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "Más dedent ha detectado" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "Subtítulo inválido: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "No puede utilizar ambas opciones \"%s\" y \"%s\"" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, 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:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, 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:280 +#: sphinx/directives/code.py:289 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:285 +#: sphinx/directives/code.py:294 #, 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:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Autor de la sección: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Autor del módulo: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Código del autor: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parámetros" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Devuelve" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Tipo del valor devuelto" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (función C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (miembro C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (macro C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (tipo C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (variable C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "función" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "miembro" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variable" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Nuevo en la versión %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Distinto en la versión %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Obsoleto desde la versión %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Parametros de Plantilla" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Lanzamientos" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (tipo C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (concepto C++)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (miembro C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (función C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (clase C++)" -#: sphinx/domains/cpp.py:5678 +#: 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 de C++)" -#: sphinx/domains/cpp.py:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (enumeración de C++)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "clase" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "concepto" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumeración" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (función incorporada)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (método de %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (clase)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variable global o constante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo de %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "dato" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "módulo" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, 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 +msgid "keyword" +msgstr "palabra clave" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operador" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objeto" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "excepción" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "sentencia" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "función incorporada" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Muestra" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (en el módulo %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable incorporada)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (en el módulo %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (clase incorporada)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (método de %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (método estático de %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático de %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (método de clase de %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de clase de %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributo de %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "excepción" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "método de la clase" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsoleto)" @@ -724,58 +2237,152 @@ msgstr "directiva" msgid "role" msgstr "rol" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "variables de entorno; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sopción en línea de comandos; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "termino de glosario" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "gramática simbólica" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "etiqueta de referencia" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "variables de entorno" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "opción de programa" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Búsqueda" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -786,46 +2393,244 @@ msgstr "ver %s" msgid "see also %s" msgstr "ver también %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Símbolos" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "falta '+' o '-' en la opción '%s'." -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' no es una opción válida." -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' no es una opción pyversion válida" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 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:147 +#: sphinx/ext/graphviz.py:149 #, 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:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorando la directiva \"graphviz\" sin contenido." -#: sphinx/ext/graphviz.py:244 +#: sphinx/ext/graphviz.py:255 #, 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -835,7 +2640,7 @@ msgid "" "%s" msgstr "dot salió con error:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -845,26 +2650,32 @@ msgid "" "%s" msgstr "dot no produjo un archivo de salida:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, 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:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[gráfica: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[gráfica]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, 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:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -874,171 +2685,314 @@ msgid "" "%s" msgstr "convert salió con error:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "Enlace permanente a esta ecuación" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(en %s versión %s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" -msgstr "" +msgstr "(en %s)" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[fuente]" -#: sphinx/ext/mathbase.py:124 -#, 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/ext/todo.py:67 msgid "Todo" msgstr "Por hacer" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(La <> se encuentra en %s, línea %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "entrada original" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[documentos]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Código de módulo" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Código fuente para %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Resumen: código de modulo" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Todos los módulos para los cuales disponen código

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias de :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "Argumentos de palabras clave" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "Ejemplo" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "Ejemplos" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "Notas" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Atención" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Prudencia" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Peligro" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Error" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Consejo" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Ver también" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Truco" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Advertencia" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Nuevo en la versión %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Distinto en la versión %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Obsoleto desde la versión %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "palabra clave" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operador" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objeto" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "sentencia" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "función incorporada" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "proviene de la página anterior" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "Tabla de Contenidos" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Búsqueda" @@ -1119,35 +3073,35 @@ msgstr "puede ser muy grande" msgid "Navigation" msgstr "Navegación" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Buscar en %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Sobre este documento" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Derechos de autor %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Derechos de autor %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Actualizado por última vez en %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1175,13 +3129,13 @@ msgstr "Próximo tema" msgid "next chapter" msgstr "próximo capítulo" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1189,20 +3143,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "buscar" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Resultados de la búsqueda" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1244,36 +3198,36 @@ msgstr "Cambios en la API C" msgid "Other changes" msgstr "Otros cambios" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Enlazar permanentemente con este título" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Enlazar permanentemente con esta definición" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Ocultar coincidencias de la búsqueda" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Buscando" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Preparando búsqueda..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", en " @@ -1290,68 +3244,223 @@ msgstr "Contraer barra lateral" msgid "Contents" msgstr "Contenidos" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:142 #, 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, 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:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "%r destino de referencia no encontrada: %% (destino)s" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "al agregar clases de directiva, no pueden administrarse argumentos adicionales" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Enlace permanente a esta tabla" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Enlace permanente a este código fuente" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Enlace permanente a esta imagen" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Enlace permanente a la tabla de contenidos" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +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:714 -msgid "continues on next page" +#: sphinx/writers/latex.py:531 +#, python-format +msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:718 +#: sphinx/writers/latex.py:582 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/writers/latex.py:633 +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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "Clave de configuración desconocida: latex_elements[%r] se ignoran." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Notas a pie de página" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[imagen: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[imagen]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, python-format +msgid "unknown node type: %r" +msgstr "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.js b/sphinx/locale/et/LC_MESSAGES/sphinx.js index 05b45d360..dc085a01b 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", "© Copyright %(copyright)s.": "© Autori\u00f5igused %(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 Sphinx %(sphinx_version)s.": "Loodud Sphinxiga (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": "Sisukord", "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 +Documentation.addTranslations({"locale": "et", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s &8212; %(docstitle)s", "© Copyright %(copyright)s.": "© Autori\u00f5igused %(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 Sphinx %(sphinx_version)s.": "Loodud Sphinxiga (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)"}); \ 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 50c2e0033..5b81c1aaf 100644 Binary files a/sphinx/locale/et/LC_MESSAGES/sphinx.mo and b/sphinx/locale/et/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 5150a48e3..ec60b30bd 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,107 +11,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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 "See projekt vajab vähemalt Sphinxi v%s ja seetõttu pole projekti võimalik käesoleva versiooniga ehitada." -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r ei leitud, eiratakse." -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "valmis" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "konserveeritud keskkonna laadimine..." -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "pole veel loodud" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "tõrge: %s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "Ehitajat pole valitud, kasutatakse vaikimisi ehitajat: html" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "oli edukas" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "lõppes probleemidega" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "ehitamine %s, %s hoiatus." -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "ehitamine %s." -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "Seadistuste väärtus %r on juba olemas" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, 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:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -119,7 +145,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -127,169 +153,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" -msgstr "Sektsioon %s" +msgid "doing serial %s" +msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Joonis %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tabel %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Nimekiri %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "vigane number %r seadistuse väärtusele %r, eiratakse" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "Puudub määratud seadistusväärtus: %s" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "Seadistuste väärtus %r on juba olemas" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Sektsioon %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Joonis %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tabel %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Nimekiri %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:165 +#, 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" +msgstr "" + +#: sphinx/registry.py:132 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Ehitaja klassil %s puudub atribuut \"name\"" -#: sphinx/registry.py:75 +#: sphinx/registry.py:134 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Ehitaja %r on juba olemas (moodulis %s)" -#: sphinx/registry.py:89 +#: sphinx/registry.py:148 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:97 +#: sphinx/registry.py:156 #, python-format msgid "Builder name %s not registered" msgstr "Ehitajat nimega %s pole registreeritud" -#: sphinx/registry.py:105 +#: sphinx/registry.py:164 #, python-format msgid "domain %s already registered" msgstr "domeen %s on juba registreeritud" -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 #, python-format msgid "domain %s not yet registered" msgstr "domeen %s pole veel registreeritud" -#: sphinx/registry.py:132 +#: sphinx/registry.py:202 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "The %r directive is already registered to %d domain" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser %r jaoks on juba registreeritud" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "Lähtekoodi analüsaatorit pole %s jaoks registreeritud" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "source_input %r jaoks on juba registreeritud" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "source_input pole %s jaoks registreeritud" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "Algne erind:\n" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "Laiendust %s pole võimalik importida" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, 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:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -321,6 +467,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -342,368 +493,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "teemat nimega %r ei leitud (kas theme.conf on puudu?)" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Sisseehitatud" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Mooduli tase" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d. %b %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Üldindeks" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "indeks" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "järgmine" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "eelmine" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentatsioon" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (pealkirjas " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "Vigane selgitustekst: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Võtmeid \"%s\" ja \"%s\" pole võimalik korraga kasutada" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Sektsiooni autor:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Mooduli autor:" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Koodi autor:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parameetrid" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Tagastab" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Tagastustüüp" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C funktsioon)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C liige)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C makro)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C tüüp)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C muutuja)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funktsioon" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "liige" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tüüp" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "muutuja" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Uus versioonis %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Muudetud versioonis %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Iganenud alates versioonist %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Malli parameetrid" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tüüp)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ liige)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funktsioon)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ klass)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++ loend)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "loend" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (sisseehitatud funktsioon)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s meetod)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (klass)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globaalmuutuja või konstant)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribuut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumendid" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (moodul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "meetod" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "andmed" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atribuut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "moodul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, 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 +msgid "keyword" +msgstr "võtmesõna" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operaator" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objekt" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "erind" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "lause" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "sisseehitatud funktsioon" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Muutujad" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moodulis %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (sisseehitatud muutuja)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (moodulis %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (sisseehitatud klass)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (klass moodulis %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s meetod)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s staatiline meetod)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s staatiline meetod)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (klassi %s.%s meetod)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassi %s meetod)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribuut)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Pythoni moodulite indeks" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moodulid" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Iganenud" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "erind" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "klassi meetod" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "staatiline meetod" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (iganenud)" @@ -725,58 +2238,152 @@ msgstr "direktiiv" msgid "role" msgstr "roll" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "keskkonnamuutuja; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%s käsurea valik; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "sõnastiku termin" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "grammatika märk" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "viite silt" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "keskkonnamuutuja" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "programmi valik" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Mooduli indeks" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Otsinguleht" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -787,46 +2394,244 @@ msgstr "vaata %s" msgid "see also %s" msgstr "vaata ka %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Sümbolid" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 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:147 +#: sphinx/ext/graphviz.py:149 #, 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:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ilma sisuta \"graphviz\" direktiivi eiramine." -#: sphinx/ext/graphviz.py:244 +#: sphinx/ext/graphviz.py:255 #, 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -836,7 +2641,7 @@ msgid "" "%s" msgstr "dot lõpetas veaga:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -846,26 +2651,32 @@ msgid "" "%s" msgstr "dot ei loonud väljundfaili:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, 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:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[joonis: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[joonis]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, 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:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -875,171 +2686,314 @@ msgid "" "%s" msgstr "convert lõpetas veaga:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "Püsiviit sellele võrrandile" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(projektis %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[lähtekood]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "võrrandil %s on topeltsilt, teine instants on %s" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Teha" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> asub %s, real %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "algne kirje" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[dokumentatsioon]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Mooduli kood" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

%s lähtekood

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Ülevaade: mooduli kood" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Kõik lähtekoodiga moodulid

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "Põlvnemine: %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "klassi :class:`%s` sünonüüm" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "Võtmesõnadega argumendid" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Tähelepanu" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Ettevaatust" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Oht" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Viga" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Vihje" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Tähtis" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Märkus" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Vaata ka" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Nõuanne" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Hoiatus" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Uus versioonis %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Muudetud versioonis %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Iganenud alates versioonist %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "võtmesõna" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operaator" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objekt" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "lause" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "sisseehitatud funktsioon" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "jätk eelmisele leheküljele" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "Sisukord" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Otsing" @@ -1120,35 +3074,35 @@ msgstr "võib olla väga suur" msgid "Navigation" msgstr "Navigatsioon" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Otsi %(docstitle)s piires" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Info selle dokumentatsiooni kohta" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Autoriõigus" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Autoriõigused %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Autoriõigused %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Viimati uuendatud %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1176,13 +3130,13 @@ msgstr "Järgmine teema" msgid "next chapter" msgstr "järgmine jaotis" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Otsingu võimaldamiseks tuleb aktiveerida JavaScript." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1190,20 +3144,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "otsi" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Otsingu tulemused" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1245,36 +3199,36 @@ msgstr "C API muutused" msgid "Other changes" msgstr "Ülejäänud muutused" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Püsiviit sellele pealkirjale" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Püsiviit sellele definitsioonile" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Varja otsingu tulemused" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Otsimine" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Otsingu ettevalmistamine..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1291,68 +3245,223 @@ msgstr "Varja külgriba" msgid "Contents" msgstr "Sisukord" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Püsiviit sellele tabelile" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Püsiviit sellele programmikoodile" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Püsiviit sellele pildile" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Püsiviit sellele sisukorrapuule" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Redaktsioon" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +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:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "Tundmatu seadistusvõti: latex_elements[%r] eiratakse." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Joonealused märkused" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[pilt: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[pilt]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 1b09f2fc4..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sphinx %(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": "Eduki taula", "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 +Documentation.addTranslations({"locale": "eu", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sphinx %(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 eead2aa93..1c514a9b3 100644 Binary files a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 9720ee527..27c7ee2e3 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,107 +9,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -117,7 +143,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -125,169 +151,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -319,6 +465,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -340,368 +491,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Modulu maila" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%Y %b %d" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indize orokorra" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "indizea" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "hurrengoa" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "aurrekoa" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentazioa" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (hemen: " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Atalaren egilea: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Moduluaren egilea: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Kodearen egilea: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Egilea:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametroak" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Itzultzen du" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Itzulketa mota" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C funtzioa)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C partaidea)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C makroa)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C mota)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C aldagaia)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funtzioa" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "partaidea" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makroa" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "mota" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "aldagaia" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Berria %s bertsioan" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "%s bertsioan aldatuta" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "%s bertsiotik aurrera zaharkituta" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Jaurtitzen du" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ mota)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ partaidea)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funtzioa)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ klasea)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "klasea" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodoa)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (klasea)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (aldagai globala edo konstantea)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributua)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumentuak" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modulua)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metodoa" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "datuak" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atributua" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modulua" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "gako-hitza" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "eragiketa" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objetua" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "salbuespena" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "sententzia" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Aldagaiak" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Goratzen du" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s moduluan)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (%s moduluan)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (klasea %s-(e)n)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodoa)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metodo estatikoa)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo estatikoa)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klaseko metodoa)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klaseko metodoa)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributua)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python moduluen indizea" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moduluak" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Zaharkitua" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "salbuespena" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "klaseko metodoa" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "metodo estatikoa" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (zaharkitua)" @@ -723,58 +2236,152 @@ msgstr "" msgid "role" msgstr "rola" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "inguruneko aldagaia; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%skomando lerroko aukera; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "glosarioko terminoa" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "gramatikako token-a" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "erreferentzia etiketa" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "inguruneko aldagaia" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "programako aukera" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Moduluen indizea" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Bilaketa orria" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -785,46 +2392,244 @@ msgstr "%s ikusi" msgid "see also %s" msgstr "ikusi %s baita ere" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -834,7 +2639,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -844,26 +2649,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -873,171 +2684,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[iturburua]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Egitekoa" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "jatorrizko sarrera" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[dokumentazioa]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Moduluko kodea" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

%s(r)en iturburu kodea

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Gainbegirada: moduluko kodea" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Kodea eskuragarri duten modulu guztiak

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Adi" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Kontuz" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Arriskua" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Errorea" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Argibidea" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Garrantzitsua" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Oharra" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Ikusi baita ere" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Iradokizuna" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Kontuz" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Berria %s bertsioan" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "%s bertsioan aldatuta" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "%s bertsiotik aurrera zaharkituta" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "gako-hitza" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "eragiketa" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objetua" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "sententzia" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "aurreko orritik jarraitzen du" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Hurrengo orrian jarraitzen du" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Eduki taula" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Bilatu" @@ -1118,35 +3072,35 @@ msgstr "handia izan daiteke" msgid "Navigation" msgstr "Nabigazioa" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Bilatu %(docstitle)s(e)n" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Dokumentu hauen inguruan" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Azken aldaketa: %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1174,13 +3128,13 @@ msgstr "Hurrengo gaia" msgid "next chapter" msgstr "hurrengo kapitulua" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Mesedez, gaitu JavaScript-a bilaketa erabili ahal izateko." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1188,20 +3142,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "bilatu" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Bilaketa emaitzak" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1243,36 +3197,36 @@ msgstr "C API aldaketak" msgid "Other changes" msgstr "Beste aldaketak" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Goiburu honetarako esteka iraunkorra" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Definizio honetarako esteka iraunkorra" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Bilaketa bat-etortzeak ezkutatu" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1289,68 +3243,223 @@ msgstr "Alboko barra tolestu" msgid "Contents" msgstr "Edukiak" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Argitalpena" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Oin-oharrak" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[irudia]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 e9cc917b8..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": ". Sphinx %(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": "\u0641\u0647\u0631\u0633\u062a \u0639\u0646\u0627\u0648\u06cc\u0646", "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": "0"}); \ No newline at end of file +Documentation.addTranslations({"locale": "fa", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": ". Sphinx %(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 1175d8d43..91cce73ee 100644 Binary files a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index e3b75462b..a8ce91f39 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -7,107 +7,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: fa\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -115,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -123,169 +149,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -317,6 +463,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -338,368 +489,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "درونی سازی" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "در سطح ماژول" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "فهرست کلی" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "فهرست" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "بعدی" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "قبلی" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr ":نویسنده این بخش" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "نویسنده این ماژول:" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr ":نویسنده" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "پارامترها" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "نوع برگشتی" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C تابع)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C عضو)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C ماکرو)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C نوع)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C متغیر)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "جدید در نسخه %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "تغییر داده شده در نسخه %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "منسوخ شده از نسخه %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (توابع درونی)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s متد)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s مشخصه)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (ماژول)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "ماژول" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "کلمه کلیدی" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "عملگر" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "شیء" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "استثناء" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "گذاره" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "توابع درونی" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "برانگیختن" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (در ماژول %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (متغیر درونی)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (در ماژول %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (کلاس درونی)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (کلاس در %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s متد)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s متد استاتیک)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s متد استاتیک)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s مشخصه)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "ماژول ها" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "منسوخ شده" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "استثناء" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -721,58 +2234,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "%s متغیرهای عمومی؛" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sگزینه خط فرمان; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "فهرست ماژول ها" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "صفحه جستجو" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -783,46 +2390,244 @@ msgstr "" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -832,7 +2637,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -842,26 +2647,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -871,171 +2682,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "در دست انجام" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "دقت" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "ملاحظه" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "خطر" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "خطا" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "تذکر" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "مهم" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "توجه" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "همچنین ملاحظه نمائید" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "نکته" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "هشدار" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "جدید در نسخه %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "تغییر داده شده در نسخه %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "منسوخ شده از نسخه %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "کلمه کلیدی" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "عملگر" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "شیء" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "گذاره" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "توابع درونی" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "فهرست عناوین" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "جستجو" @@ -1116,35 +3070,35 @@ msgstr "" msgid "Navigation" msgstr "ناوبری" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "جستجو در %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "درباره این مستندات" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "کپی رایت" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr ". %(last_updated)s آخرین بروز رسانی در" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1172,13 +3126,13 @@ msgstr "موضوع بعدی" msgid "next chapter" msgstr "فصل بعدی" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1186,20 +3140,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "جستجو" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "نتایج جستجو" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1241,36 +3195,36 @@ msgstr "C API تغییرات" msgid "Other changes" msgstr "دگر تغییرات" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "لینک ثابت به این سر مقاله" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "لینک ثابت به این تعریف" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "عدم نمایش نتایج یافت شده" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1287,68 +3241,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "انتشار" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 e065ce05b..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": "", "© Copyright %(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 Sphinx %(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": "Sis\u00e4llysluettelo", "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 +Documentation.addTranslations({"locale": "fi", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(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 b7efbfd09..d4ef5e6ca 100644 Binary files a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 731638af0..06a9621d7 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Moduulitaso" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Yleinen sisällysluettelo" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "hakemisto" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr ">" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "<" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Luvun kirjoittaja: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Moduulin kirjoittaja: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Tekijä: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Uusi versiossa %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Muutettu versiossa %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Poistettu versiosta %s alkaen" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (moduuli)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "moduuli" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moduulit" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (poistettu)" @@ -722,58 +2235,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Moduuli sisällysluettelo" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Etsi sivu" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Tehtävä vielä" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Huom" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Varoitus" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Vaara" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Virhe" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Vihje" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Tärkeä" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Muista" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Katso myös" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Vihje" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Varoitus" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Uusi versiossa %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Muutettu versiossa %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Poistettu versiosta %s alkaen" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "Sisällysluettelo" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Etsi" @@ -1117,35 +3071,35 @@ msgstr "voi olla iso" msgid "Navigation" msgstr "Navikointi" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Tietoja tästä documentistä" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr ">>" msgid "next chapter" msgstr ">>" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Javascript pitää olla sallittu, jotta etsintä toimii." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1187,20 +3141,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Anna hakusanat kokonaan, osasanoilla ei haeta." -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "etsi" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Etsinnän tulos" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Piilota löydetyt" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1288,68 +3242,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 776ce2c9a..6f3b023a6 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", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Cr\u00e9\u00e9 avec Sphinx %(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 +Documentation.addTranslations({"locale": "fr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Cr\u00e9\u00e9 avec Sphinx %(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)"}); \ 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 90cd588dd..c82ea57e0 100644 Binary files a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 7b25c3d10..fca3d856c 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ # Jean-François B. , 2017-2018 # Julien Palard , 2017 # Larlet David , 2008 -# Lilian Besson , 2013-2014 +# Lilian Besson , 2013-2014 # Nikolaj van Omme , 2014-2015 # Pierre Grépon , 2016 # Sebastien Douche , 2008 @@ -23,290 +23,436 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\n" -"Last-Translator: Takeshi KOMIYA \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. \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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 "Ce projet nécessite Sphinx v%s minimum et ne peut donc pas être construit avec cette version." +msgstr "Ce projet nécessite au minimum Sphinx v%s et ne peut donc pas être construit avec cette version." -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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' comme actuellement défini dans conf.py n'est pas un callable Python. 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." +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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." -msgstr "primary_domain %r non trouvé; ignoré" +msgstr "primary_domain %r non trouvé; ignoré." -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "fait" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "chargement de l'environnement sérialisé..." -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "pas encore créé" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "échec : %s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" -msgstr "Aucun constructeur sélectionné, utilisation du constructeur par défaut : html" +msgstr "Aucun constructeur sélectionné, utilisation du défaut : html" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "réussi" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "s'est terminé avec des problèmes" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "L'option de configuration %r est déjà présente" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" -msgstr "" +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" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "La valeur de la clé %r doit être un tuple de fonctions (visite, départ)" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" -msgstr "" +msgstr "lors de la mise en place de l'extension %s : la directive %r est déjà enregistrée, elle sera écrasée" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" +msgstr "lors de la mise en place de l'extension %s : le role %r est déjà enregistré, il sera écrasé" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, 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 "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:696 +#: sphinx/application.py:1274 #, 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 "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 +#, python-format +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:133 -#, python-format -msgid "Section %s" -msgstr "Section %s" - -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Fig. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tableau %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Code source %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, 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)" +msgstr "impossible d'écraser le dictionnaire de configuration %r ; ignoré (utilisez %r pour modifier les éléments individuellement)" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" -msgstr "nombre non valide %r pour l'option de configuration %r; ignoré" +msgstr "nombre non valide %r pour l'option de configuration %r ; ignoré" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, 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é, remplacement ignoré" +msgstr "impossible de remplacer le paramètre de configuration %r par un type non-supporté ; ignoré" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" -msgstr "paramètre de configuration %r inconnu dans override, ignoré" +msgstr "paramètre de configuration %r inconnu dans override ; ignoré" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "Option de configuration inexistante : %s" -#: sphinx/events.py:57 +#: sphinx/config.py:304 #, python-format -msgid "Event %r already present" -msgstr "Événement %r déjà présent" +msgid "Config value %r already present" +msgstr "L'option de configuration %r est déjà présente" -#: sphinx/events.py:63 +#: sphinx/config.py:355 #, python-format -msgid "Unknown event name: %s" -msgstr "Nom d'événement inconnu : %s" +msgid "There is a syntax error in your configuration file: %s" +msgstr "" -#: sphinx/extension.py:53 +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " -"loaded." -msgstr "L'extension %s est exigée par le paramètre needs_extensions, mais n'est pas chargée." +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" -#: sphinx/extension.py:58 +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Section %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Fig. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tableau %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Code source %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 +#, python-format +msgid "Event %r already present" +msgstr "Évènement %r déjà présent" + +#: sphinx/events.py:64 +#, python-format +msgid "Unknown event name: %s" +msgstr "Nom d'évènement inconnu : %s" + +#: sphinx/extension.py:55 +#, python-format +msgid "" +"The %s extension is required by needs_extensions settings, but it is not " +"loaded." +msgstr "" + +#: sphinx/extension.py:60 #, 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 moins en version %s et par conséquent ne peut pas être compilé avec la version chargée (%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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" -msgstr "La classe Builder %s n'a pas d'attribut \"name\"" - -#: sphinx/registry.py:75 -#, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:89 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "Le nom de Builder %s n'est ni enregistré ni disponible par un point d'entrée" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:105 +#: sphinx/io.py:209 #, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" +msgstr "La classe Builder %s n'a pas d'attribut « name »" + +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:148 +#, 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 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." -msgstr "l'extension %r a été fusionnée dans Sphinx depuis la version %s ; cette extension est ignorée." +msgstr "l'extension %r a été intégrée à Sphinx depuis la version %s ; cette extension est ignorée." -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "Exception initiale :\n" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, 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-ce réellement un module d'extension de Sphinx ?" +msgstr "l'extension %r n'a pas de fonction setup(); est-elle réellement un module d'extension de Sphinx ?" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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 ; elle ne peut donc pas être employée avec la version courante." +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:338 +#: sphinx/registry.py:495 #, 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 metadata" +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 #, python-format @@ -333,6 +479,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -347,375 +498,1737 @@ msgstr "" 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 procéder à l'installation manuelle (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 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Fonctions de base" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Module" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Index général" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "index" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "suivant" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "précédent" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "Documentation %s %s" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "(dans" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "Légende invalide: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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 essayer avec l'option :encoding:" +msgstr "L’encodage %r utilisé pour lire le fichier inclus %r semble erroné, veuillez ajouter une option :encoding:" -#: sphinx/directives/code.py:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Auteur de la section : " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Auteur du module : " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Auteur du code : " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Auteur : " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Paramètres" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Renvoie" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Type renvoyé" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (fonction C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (membre C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (macro C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (type C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (variable C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "fonction" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "membre" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "type" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variable" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Nouveau dans la version %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Modifié dans la version %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Obsolète depuis la version %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Paramètres du modèle" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Déclenche" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (type C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (concept C++)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (membre C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (fonction C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (classe C++)" -#: sphinx/domains/cpp.py:5678 +#: 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 (énumération C++)" -#: sphinx/domains/cpp.py:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (énumérateur C++)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "énumération" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "énumérateur" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (fonction de base)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (méthode %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variable globale ou constante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "méthode" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "données" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "module" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, 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 +msgid "keyword" +msgstr "mot-clé" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "opérateur" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objet" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "exception" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "état" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "fonction de base" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Lève" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (dans le module %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable de base)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (dans le module %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (classe de base)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (classe dans %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (méthode %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (méthode statique %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (méthode statique %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (méthode de la classe %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (méthode de la classe %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (attribut %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Index des modules Python" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Obsolète" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "exception" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "méthode de classe" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "méthode statique" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsolète)" @@ -737,58 +2250,152 @@ msgstr "directive" msgid "role" msgstr "role" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "variable d'environnement; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%s option de ligne de commande; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "terme du glossaire" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "élément de grammaire" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "étiquette de référence" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "variable d'environnement" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "option du programme" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "document" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Index du module" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Page de recherche" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -799,46 +2406,244 @@ msgstr "voir %s" msgid "see also %s" msgstr "voir aussi %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Symboles" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 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:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." -msgstr "Directive « graphviz » sans contenu ignorée" +msgstr "Directive « graphviz » sans contenu ignorée." -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -848,7 +2653,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -858,26 +2663,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, 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 vaut %r" +msgstr "graphviz_output_format doit être « png » ou « svg », mais est %r" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[graphe: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[graphe]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -887,171 +2698,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "Lien permanent vers cette équation" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(disponible dans %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[source]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "Libellé dupliqué pour l'équation %s, autre instance dans %s." - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "À faire" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(l'<> se trouve dans %s, à la ligne %d)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "entrée originale" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Code du module" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Code source de %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Vue d'ensemble : code du module" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Modules pour lesquels le code est disponible

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "Bases : %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias de :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "Arguments de mots-clés" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Attention" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Prudence" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Danger" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Erreur" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Indication" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Note" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Voir aussi" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Astuce" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Avertissement" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Nouveau dans la version %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Modifié dans la version %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Obsolète depuis la version %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "mot-clé" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "opérateur" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objet" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "état" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "fonction de base" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "suite de la page précédente" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "Table des Matières" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Recherche" @@ -1132,35 +3086,35 @@ msgstr "peut être énorme" msgid "Navigation" msgstr "Navigation" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Recherchez dans %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "À propos de ces documents" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Mis à jour le %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1188,13 +3142,13 @@ msgstr "Sujet suivant" msgid "next chapter" msgstr "Chapitre suivant" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1202,20 +3156,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "rechercher" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Résultats de la recherche" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1257,36 +3211,36 @@ msgstr "Modifications de l'API C" msgid "Other changes" msgstr "Autres modifications" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Lien permanent vers ce titre" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Lien permanent vers cette définition" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Cacher les résultats de la recherche" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Recherche en cours" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Préparation de la recherche..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", dans" @@ -1303,68 +3257,223 @@ msgstr "Réduire la barre latérale" msgid "Contents" msgstr "Contenu" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Lien permanent vers ce tableau" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Lien permanent vers ce code" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Lien permanent vers cette image" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Lien permanent vers cette table des matières" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Version" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +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:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "Clé de configuration inconnue : latex_elements[%r] est ignoré." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Notes de bas de page" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[image]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 71d528e6a..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": "", "© Copyright %(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 Sphinx %(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": "\u05ea\u05d5\u05db\u05df \u05e2\u05e0\u05d9\u05d9\u05e0\u05d9\u05dd", "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)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "he", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(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 efb19887e..8a75964c7 100644 Binary files a/sphinx/locale/he/LC_MESSAGES/sphinx.mo and b/sphinx/locale/he/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 00d7944d1..69121ed31 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\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:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "רמת המודול" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "אינדקס" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "הבא" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "הקודם" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "תיעוד %s %s" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "(בתוך" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "מחבר הקטע:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "מחבר המודול:" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "מחבר הקוד:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "מחבר:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "פרמטרים" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "פונקציה" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "מאקרו" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "משתנה" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "חדש בגרסה %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "השתנה בגרסה %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr " לא מומלץ לשימוש מגרסה %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (פונקציית C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (מחלקת C++)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "מחלקה" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "מודול" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "מילת מפתח" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "משתנים" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -722,58 +2235,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "משתנה סביבה; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sאופציית שורת הפקודה ; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "משתנה סביבה" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "מודול אינדקס" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "דף חיפוש" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "ראה %s" msgid "see also %s" msgstr "ראה גם %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[מקור]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "לעשות" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "הטקסט המקורי" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[תיעוד]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

הראה קוד מקור ל %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

כל המודולים שיש להם קוד זמין

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "תשומת לב" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "זהירות" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "סכנה" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "שגיאה" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "רמז" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "חשוב" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "הערה" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "ראה גם" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "טיפ" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "אזהרה" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "חדש בגרסה %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "השתנה בגרסה %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr " לא מומלץ לשימוש מגרסה %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "מילת מפתח" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "המשך מעמוד קודם" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "תוכן עניינים" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "חיפוש" @@ -1117,35 +3071,35 @@ msgstr "עשוי להיות עצום" msgid "Navigation" msgstr "ניווט" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "חפש בתוך %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "על מסמכים אלו" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "זכויות שמורות" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "עודכן לאחרונה ב %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "נושא הבא" msgid "next chapter" msgstr "פרק הבא" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "אנא הפעל ג'אואסקריפט ע\"מ לאפשר את\n החיפוש." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1187,20 +3141,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "חיפוש" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "תוצאות החיפוש" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "" msgid "Other changes" msgstr "שינויים אחרים" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "קישור קבוע לכותרת זו" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "קישור קבוע להגדרה זו" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "הסתר תוצאות חיפוש" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1288,68 +3242,223 @@ msgstr "כווץ סרגל צד" msgid "Contents" msgstr "תוכן" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "מהדורה" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "הערות שוליים" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[תמונה]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 5d9197c5c..4994a64c8 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": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "Sphinx %(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)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "hi", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "Sphinx %(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)"}); \ 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 317e04c74..42f10e7f8 100644 Binary files a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 8d7be834a..3ee276581 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "चित्र %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "चित्र %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "अनुक्रमणिका" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "लेखक:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "संस्करण %s से नया " + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "संस्करण %s से अलग " + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "संस्करण %s से प्रतिबंधित " + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -722,58 +2235,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "खोज पृष्ठ" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "%s देखिए" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "मूल entry" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

%s का स्रोत code

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "सावधान" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "चेतावनी" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "खतरा" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "गलती" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "महत्त्वपूर्ण" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "संस्करण %s से नया " - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "संस्करण %s से अलग " - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "संस्करण %s से प्रतिबंधित " - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "" @@ -1117,35 +3071,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "खोज ने के लिए JavaScript का होना आवश्यक है. कृपया JavaScript को शशक्त कीजिये " -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1187,20 +3141,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "खोज परीणाम " -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1288,68 +3242,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, python-format +msgid "unknown node type: %r" +msgstr "" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js index d1763d0b3..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": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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 +Documentation.addTranslations({"locale": "hi_IN", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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 6e24e8c31..5b56cd973 100644 Binary files a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 27d141b23..b181435d9 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,107 +7,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: hi_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -115,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -123,169 +149,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -317,6 +463,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -338,368 +489,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -721,58 +2234,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -783,46 +2390,244 @@ msgstr "" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -832,7 +2637,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -842,26 +2647,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -871,171 +2682,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "" @@ -1116,35 +3070,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1172,13 +3126,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1186,20 +3140,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1241,36 +3195,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1287,68 +3241,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 0be353de1..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", "© Copyright %(copyright)s.": "© Sva prava zadr\u017eana %(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 Sphinx %(sphinx_version)s.": "Izra\u0111eno sa Sphinx %(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": "Pregled sadr\u017eaja", "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 +Documentation.addTranslations({"locale": "hr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Sva prava zadr\u017eana %(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 Sphinx %(sphinx_version)s.": "Izra\u0111eno sa Sphinx %(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 5a955aa4c..c10508092 100644 Binary files a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index f48d0802a..cd0e71ced 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\n" -"Last-Translator: Takeshi KOMIYA \n" +"POT-Creation-Date: 2018-08-21 01:14+0900\n" +"PO-Revision-Date: 2018-09-11 10:35+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, 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 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "Nema izvornog direktorija (%s)" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "Izvorni i odredišni direktorij ne smiju biti jednaki" + +#: sphinx/application.py:191 +#, python-format +msgid "Running Sphinx v%s" +msgstr "Izrada pomoću 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 "Ovaj projekt se ne može izgraditi s instaliranom verzijom, potrebno je instalirati Sphinx v%s ili višu verziju." -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "izrada odredišnog direktorija..." + +#: sphinx/application.py:244 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:221 +#: 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:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "napravljeno" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "učitavanje okoline..." -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "još nije napravljeno" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "neuspješno: %s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "Nije odabran format, koristi se zadani: html" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "uspješno" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "završeno uz probleme" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s upozorenje." -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "Konfiguracijska vrijednost %r već postoji" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, 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" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "Vrijednost za ključ %r treba biti par funkcija (visit, depart)" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, 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" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "postavljanje proširenja %s: uloga %r je već registrirana, biti će nadjačana" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,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:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" -msgstr "Poglavlje %s" +msgid "doing serial %s" +msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Slika %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tablica %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Ispis %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, 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:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nepravilan broj %r za konf. vrijednost %r, zanemaruje se" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, 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:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nepoznata konfiguracijska vrijednost %r, zanemaruje se" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "Ne postoji konfiguracijska vrijednost: %s" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "Konfiguracijska vrijednost %r već postoji" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Poglavlje %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Slika %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tablica %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Ispis %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "Događaj %r već postoji" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "Nepoznato ime događaja: %s" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:165 +#, 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" +msgstr "" + +#: sphinx/registry.py:132 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Klasa %s nema \"name\" svojstvo" -#: sphinx/registry.py:75 +#: sphinx/registry.py:134 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r već postoji (u modulu %s)" -#: sphinx/registry.py:89 +#: sphinx/registry.py:148 #, 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:97 +#: sphinx/registry.py:156 #, python-format msgid "Builder name %s not registered" msgstr "Builder %s nije registriran" -#: sphinx/registry.py:105 +#: sphinx/registry.py:164 #, python-format msgid "domain %s already registered" msgstr "domena %s je već registrirana" -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 #, python-format msgid "domain %s not yet registered" msgstr "domena %s nije još registrirana" -#: sphinx/registry.py:132 +#: sphinx/registry.py:202 #, python-format -msgid "new domain not a subclass of registered %s domain" -msgstr "nova domena nije subklasa registrirane domene %s" +msgid "The %r directive is already registered to %d domain" +msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser za %r je već registriran" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, 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:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "Izvorna iznimka:\n" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "Proširenje %s ne može biti uvezena" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, 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:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "tema %r nije pronađena, nasljeđuje ju %r" 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 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "sphinx_rtd_theme više nije čvrsta zavisnost od verzija 1.4.0. Molimo i msgid "no theme named %r found (missing theme.conf?)" msgstr "nema teme %r (nedostaje theme.conf?)" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Ugrađeni dijelovi" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Nivo modula" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Opceniti abecedni indeks" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "abecedni indeks" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "naprijed" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "nazad" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentacija" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (u " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "Detektirano je prekobrojno izvlačenje koda" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "Neispravan navod: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Ne mogu se istovremeno koristiti *%s* i *%s* opcije" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, 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:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, 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:280 +#: sphinx/directives/code.py:289 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:285 +#: sphinx/directives/code.py:294 #, 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:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Autor sekcije: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Autor modula: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Autor koda:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autor:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Vraća" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Vraća tip" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C funkcija)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C član)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C makro)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C tip)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C varijabla)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "član" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "varijabla" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Novo u verziji %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Promijenjeno u verziji %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Zastarijelo od verzije %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Parametri predloška" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Baca (iznimke)" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tip)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (C++ koncept)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ član)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funkcija)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ razred)" -#: sphinx/domains/cpp.py:5678 +#: 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)" -#: sphinx/domains/cpp.py:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++ enumerator)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "razred" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ugrađene funkcije)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (razred)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globalna varijabla ili konstanta)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumenti" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "podaci" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, 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 +msgid "keyword" +msgstr "ključna riječ" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operator" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objekt" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "izuzetak" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "izjava" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "ugrađen funkcije" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Varijable" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Podiže" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (u modulu %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (ugrađene variable)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (u modulu %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (ugrađen razred)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (razred u %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statična metoda)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metoda klase)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klase)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribut)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python indeks modula" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Zastarjelo" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "izuzetak" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "metoda klase" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (zastarjelo)" @@ -722,58 +2235,152 @@ msgstr "Direktive" msgid "role" msgstr "uloga" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "varijabla okruženja; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%scommand line parameter; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "termin rječnika" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "token gramatike" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "referentna oznaka" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "varijabla okruženja" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "programske mogućnosti" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Popis modula" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Tražilica" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "pogledajte %s" msgid "see also %s" msgstr "Dodatne informacije: %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Simboli" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "nedostaje '+' ili '-' u '%s' opciji." -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' nije valjana opcija." -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' nije valjana pyversion opcija" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 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:147 +#: sphinx/ext/graphviz.py:149 #, 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:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignoriranje \"graphviz\" direktive bez sadržaja." -#: sphinx/ext/graphviz.py:244 +#: sphinx/ext/graphviz.py:255 #, 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "dot rezultirao greškom:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "dot nije izradio izlaznu datoteku:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, 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:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, 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:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "convert je vratio grešku:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "Link na tu definiciju" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(u %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[source]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "dvostruka oznaka jednakosti %s, drugo pojavljivanje u %s" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> se nalazi u %s, redak %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "izvorna stavka" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Kod modula" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Izvorni kod za %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Pregled: kod modula" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Svi moduli za koje je dostupan kod

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "Osnovice: %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "nadimak za :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "Argumenti" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "Primjeri" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Pozor" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Pažnja" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Opasnost" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Greška" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Savjet" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Važno" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Napomena" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Više informacija" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Savjet" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Upozorenje" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Novo u verziji %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Promijenjeno u verziji %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Zastarijelo od verzije %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "ključna riječ" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operator" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objekt" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "izjava" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "ugrađen funkcije" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "nastavak sa prethodne stranice" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "nastavak na sljedećoj stranici" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Pregled sadržaja" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Traži" @@ -1117,35 +3071,35 @@ msgstr "može biti ogromno" msgid "Navigation" msgstr "Navigacija" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Traži između %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "O ovim dokumentima" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Sva prava zadržana" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Sva prava zadržana %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Sva prava zadržana %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Zadnji put ažurirano %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "Sljedeća tema" msgid "next chapter" msgstr "sljedeće poglavlje" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1187,20 +3141,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "traži" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Rezultati pretrage" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "C API promjene" msgid "Other changes" msgstr "Ostale promjene" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Link na taj naslov" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Link na tu definiciju" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Sakrij rezultate pretrage" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Pretraživanje" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Priprema pretrage..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", u " @@ -1288,68 +3242,223 @@ msgstr "Sakrij pomoćnu traku" msgid "Contents" msgstr "Sadržaj" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:142 #, 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, 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:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "%r referenca target nije pronađena: %% (target)" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "prilikom dodavanja klasa direktiva, ne mogu se dati dodatni argumenti" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Permalink na ovu tablicu" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Permalink na ovaj kod" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Permalink na ovu sliku" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Permalink na ovaj sadržaj" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Distribucija" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "Nepoznata postavka: latex_elements[%r] je zanemarena." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Fusnote" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[slika: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[slika]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 70c30b1b4..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sphinx %(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": "Tartalomjegyz\u00e9k", "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 +Documentation.addTranslations({"locale": "hu", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sphinx %(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 d13a297c6..9279e158e 100644 Binary files a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 030b0c078..c9bd16a43 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -5,112 +5,139 @@ # Translators: # FIRST AUTHOR , 2011 # Molnár Dénes , 2017 +# Peter Schön , 2018 # Tibor Toth , 2013,2015 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -118,7 +145,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -126,169 +153,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" -msgstr "%s. bekezdés" +msgid "doing serial %s" +msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "%s. ábra" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "%s. táblázat" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "%s. felsorlás" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "%s. bekezdés" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "%s. ábra" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "%s. táblázat" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "%s. felsorlás" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -320,6 +467,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -341,368 +493,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Beépített" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Modul szint" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Általános tárgymutató" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "nyitóoldal" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "következő" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "előző" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentáció" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Fejezet szerző: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Modul szerző: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Kód szerző: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Szerző: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Paraméterek" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Visszatérési érték" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Visszatérés típusa" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C függvény)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C tagváltozó)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C makró)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C típus)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C változó)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "függvény" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "tag" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makró" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "típus" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "változó" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Új a(z) %s verzióban" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "A %s verzióban változott" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Elavult a(z) %s verzió óta" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Sablonparaméterek" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Dob" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ típus)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ tagváltozó)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ függvény)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ osztály)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++ enumerátor)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "osztály" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enumeráció" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (beépített függvény)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metódus)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (osztály)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, 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:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribútum)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumentum" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metódus" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "adat" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "attribútum" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "kulcsszó" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operátor" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objektum" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "kivétel" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "utasítás" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "beépített függvény" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Változók" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" -msgstr "Elmel" +msgstr "Kivétel" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modulban)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (beépített változó)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modulban)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (beépített osztály)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (osztály %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metódus)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statikus metódus)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statikus metódus)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s osztály metódus)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s osztály metódus)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribútum)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python Modul Mutató" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "modulok" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Elavult" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "kivétel" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "osztály szintű metódus" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statikus metódus" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (elavult)" @@ -724,58 +2238,152 @@ msgstr "direktíva" msgid "role" msgstr "szerepkör" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "környezeti változó; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sparancssor opció; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "szójegyzék" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "nyelvtani jel" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "referencia cimke" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "környezeti változó" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "program opció" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Modulok" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Keresés" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -786,46 +2394,244 @@ msgstr "lásd %s" msgid "see also %s" msgstr "lásd még %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Szimbólumok" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -835,7 +2641,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -845,26 +2651,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -874,171 +2686,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[source]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Tennivaló" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "eredeti bejegyzés" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Modul forráskód" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

%s forráskódja

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Áttekintés: modul forráskód" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Az összes modul, melynek forrása elérhető

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "álneve :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Figyelem" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Figyelem" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Veszély" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Hiba" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Tipp" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Fontos" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Megjegyzés" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Lásd még" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Javaslat" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Figyelem" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Új a(z) %s verzióban" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "A %s verzióban változott" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Elavult a(z) %s verzió óta" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "kulcsszó" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operátor" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objektum" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "utasítás" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "beépített függvény" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "folytatás az előző oldalról" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "A következő oldalon folytatódik" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Tartalomjegyzék" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Keresés" @@ -1119,35 +3074,35 @@ msgstr "nagy lehet" msgid "Navigation" msgstr "Navigáció" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Keresés köztük: %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Névjegy ezekről a dokumentumokról" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Minden jog fenntartva" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Utolsó frissítés %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1175,13 +3130,13 @@ msgstr "Következő témakör" msgid "next chapter" msgstr "következő fejezet" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1189,20 +3144,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "keresés" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Keresési Eredmények" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1244,36 +3199,36 @@ msgstr "C API változások" msgid "Other changes" msgstr "Egyéb változások" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Hivatkozás erre a fejezetcímre" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Hivatkozás erre a definícióra" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Keresési Találatok Elrejtése" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Keresés folyamatban" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Felkészülés a keresésre..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", " @@ -1290,68 +3245,223 @@ msgstr "Oldalsáv összezárása" msgid "Contents" msgstr "Tartalom" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Permalink erre a táblázatra" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Permalink erre a kódrészletre" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Permalink erre a képre" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +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:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Lábjegyzetek" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[image]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 59b6c07ed..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", "© Copyright %(copyright)s.": "© Hak cipta %(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 Sphinx %(sphinx_version)s.": "Dibuat menggunakan Sphinx %(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": "Daftar Isi", "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 +Documentation.addTranslations({"locale": "id", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Hak cipta %(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 Sphinx %(sphinx_version)s.": "Dibuat menggunakan Sphinx %(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 42486d65b..4174079bb 100644 Binary files a/sphinx/locale/id/LC_MESSAGES/sphinx.mo and b/sphinx/locale/id/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 7291519da..638d3d875 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -10,107 +10,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -118,7 +144,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -126,169 +152,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" -msgstr "Bab %s" +msgid "doing serial %s" +msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Gambar. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tabel %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Daftar %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Bab %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Gambar. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tabel %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Daftar %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -320,6 +466,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -341,368 +492,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Modul Internal" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Level Modul" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks Umum" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "index" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "berikut" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "sebelum" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "dokumentasi %s %s" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (dalam " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "Keterangan tidak valid: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Penyusun bagian:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Penyusun modul: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Penulis kode:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Penyusun: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Kembali" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (fungsi C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (anggota C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (macro C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (tipe C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (variabel C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "fungsi" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "anggota" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tipe" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variabel" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Baru pada versi %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Berubah pada versi %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Ditinggalkan sejak versi %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Parameter Templat" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (tipe C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (C++ konsep)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (anggota C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (fungsi C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (class C++)" -#: sphinx/domains/cpp.py:5678 +#: 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)" -#: sphinx/domains/cpp.py:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++ enumerator)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "konsep" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (fungsi built-in)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (method %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (class)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabel global atau konstan)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumen" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "method" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, 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 +msgid "keyword" +msgstr "keyword" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operator" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "object" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "eksepsi" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "statement" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "fungsi built-in" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variabel" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (di modul %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabel built-in)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (di modul %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (class built-in)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (class di %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (method %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (method static %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (method static %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (method class %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (method class %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribut %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Indeks Modul Python" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "modul" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Akan ditinggalkan" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "eksepsi" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "method class" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "method static" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsolet)" @@ -724,58 +2237,152 @@ msgstr "direktif" msgid "role" msgstr "role" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "variabel environment; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sopsi command line; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "daftar istilah" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "token grammar" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "label referensi" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "variabel environment" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "opsi program" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Indeks Modul" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pencarian Halaman" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -786,46 +2393,244 @@ msgstr "lihat %s" msgid "see also %s" msgstr "lihat juga %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Simbol" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -835,7 +2640,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -845,26 +2650,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -874,171 +2685,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "Tautan untuk persamaan ini" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(di %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[sumber]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "duplikasi label persamaan %s, misalnya di %s" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> terletak di %s, baris %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "entri asli" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Kode modul" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Kode sumber untuk %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Tinjauan: kode modul" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Semua modul dimana kode tersedia

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "Basis: %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias dari :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "Argumen Kata Kunci" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Pehatian" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Hati-hati" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Bahaya" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Kesalahan" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Penting" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Catatan" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "lihat juga" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Peringatan" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Baru pada versi %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Berubah pada versi %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Ditinggalkan sejak versi %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "keyword" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operator" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "object" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "statement" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "fungsi built-in" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "lanjutan dari halaman sebelumnya" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Lanjut ke halaman berikutnya" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Daftar Isi" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Pencarian" @@ -1119,35 +3073,35 @@ msgstr "dapat menjadi besar" msgid "Navigation" msgstr "Navigasi" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Pencarian dalam %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Tentang dokumen ini" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Hak cipta %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Hak cipta %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Terakhir diperbarui pada %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1175,13 +3129,13 @@ msgstr "Topik berikutnya" msgid "next chapter" msgstr "bab berikutnya" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Tolong aktifkan JavaScript untuk melakukan pencarian.\n " -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1189,20 +3143,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "pencarian" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Hasil Pencarian" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1244,36 +3198,36 @@ msgstr "Perubahan API C" msgid "Other changes" msgstr "Perubahan lain" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Link permanen untuk headline ini" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Link permanen untuk definisi ini" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Sembunyikan Hasil Pencarian" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Pencarian" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Penyiapkan pencarian..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", di" @@ -1290,68 +3244,223 @@ msgstr "Tutup sidebar" msgid "Contents" msgstr "Konten" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Link permanen untuk table ini" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Link permanen untuk kode ini" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Link permanen untuk gambar ini" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Tautan ke daftar isi ini" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Rilis" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "Kunci konfigurasi tak dikenal: latex_elements[%r] diabaikan." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Catatan kaki" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[gambar: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[gambar]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 0afca4dc7..13ae15e06 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", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Creato con Sphinx %(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": "Tabella dei contenuti", "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 +Documentation.addTranslations({"locale": "it", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Creato con Sphinx %(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)"}); \ 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 c613bee21..d42cbc3f0 100644 Binary files a/sphinx/locale/it/LC_MESSAGES/sphinx.mo and b/sphinx/locale/it/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 7cb79951b..8c99eb726 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -11,107 +11,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\n" -"Last-Translator: Takeshi KOMIYA \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) \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: 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:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "fatto" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "non ancora creato" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "terminato con problemi" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -119,7 +145,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -127,169 +153,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" -msgstr "Sezione %s" +msgid "doing serial %s" +msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Fig. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tabella %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Listato %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Sezione %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Fig. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tabella %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Listato %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -321,6 +467,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -342,368 +493,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Al livello del modulo" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indice generale" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "indice" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "successivo" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "precedente" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s documentazione" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (in " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "Didascalia non valida: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Impossibile usare contemporaneamente le opzioni \"%s\" e \"%s\"" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Autore della sezione: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Autore del modulo: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Autore del codice: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autore: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Ritorna" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Tipo di ritorno" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (funzione C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (membro C )" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (macro C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (tipo C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (variabile C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funzione" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variabile" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Nuovo nella versione %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Cambiato nella versione %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Deprecato dalla versione %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Parametri del modello" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Solleva" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (tipo C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (concetto C++)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (membro C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (funzione C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (classe C++)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (enumeratore C++)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "concetto" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumeratore" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funzione built-in)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodo)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabile globale o costante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attributo)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Parametri" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modulo)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metodo" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "attributo" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modulo" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, 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 +msgid "keyword" +msgstr "keyword" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operatore" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "oggetto" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "eccezione" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "statement" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "funzione built-in" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variabili" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Solleva" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (nel modulo %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabile built-in)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (nel modulo %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (classe built-in)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (classe in %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodo)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metodo statico)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo statico)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metodo della classe)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metodo della classe)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attributo)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Indice del modulo Python" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moduli" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Deprecato" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "eccezione" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "metodo della classe" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "metodo statico" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (deprecato)" @@ -725,58 +2238,152 @@ msgstr "direttiva" msgid "role" msgstr "ruolo" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "variabile d'ambiente, %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sopzione di linea di comando; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "voce del glossario" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "elemento grammaticale" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "etichetta di riferimento" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "variabile d'ambiente" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "opzione del programma" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Indice dei moduli" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Cerca" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -787,46 +2394,244 @@ msgstr "vedi %s" msgid "see also %s" msgstr "vedi anche %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Simboli" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "manca '+' or'-' nell'opzione '%s'." -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' non è un'opzione valida." -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -836,7 +2641,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -846,26 +2651,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[grafico: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[grafico]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -875,171 +2686,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "Permalink a questa equazione" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[sorgente]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "etichetta dell'equazione %s duplicata, altra istanza in %s" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Da fare" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(L'<> si trova in %s, linea %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "riga originale" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[documenti]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Codice del modulo" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Codice sorgente per %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Vista generale: codice del modulo" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Tutti i moduli di cui è disponibile il codice

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr " Basi: %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias per :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "Argomenti parole chiave" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "Esempi" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Attenzione" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Attenzione" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Pericolo" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Errore" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Suggerimento" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Vedi anche" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Suggerimento" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Avvertimento" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Nuovo nella versione %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Cambiato nella versione %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Deprecato dalla versione %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "keyword" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operatore" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "oggetto" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "statement" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "funzione built-in" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "continua dalla pagina precedente" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Continua alla pagina successiva" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Tabella dei contenuti" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Cerca" @@ -1120,35 +3074,35 @@ msgstr "può essere enorme" msgid "Navigation" msgstr "Navigazione" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Cerca in %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "A proposito di questi documenti" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Ultimo aggiornamento %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1176,13 +3130,13 @@ msgstr "Argomento successivo" msgid "next chapter" msgstr "capitolo successivo" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Attiva JavaScript per abilitare la funzione⏎\ndi ricerca." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1190,20 +3144,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 \"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." -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "cerca" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Risultati della ricerca" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1245,36 +3199,36 @@ msgstr "Modifiche nelle API C" msgid "Other changes" msgstr "Altre modifiche" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Link a questa intestazione" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Link a questa definizione" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Nascondi i risultati della ricerca" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Cerca" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Preparo la ricerca..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", in " @@ -1291,68 +3245,223 @@ msgstr "Comprimi la barra laterale" msgid "Contents" msgstr "Contenuti" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Link a questa tabella" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Link a questo codice" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Link a questa immagine" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Link a questo indice" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Release" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "Chiave di configurazione sconosciuta: latex_elements[%r] è ignorata." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Note a piè di pagina" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[immagine: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[immagine]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 d155ce249..769dd0d33 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", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f Sphinx %(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 +Documentation.addTranslations({"locale": "ja", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f Sphinx %(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"}); \ 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 81b949ca9..0fc58b8b3 100644 Binary files a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 731f30029..c1c341813 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -5,7 +5,7 @@ # Translators: # shirou - しろう , 2013 # Akitoshi Ohta , 2011 -# cocoatomo, 2018 +# tomo🐧, 2018 # Hisahiro Ohmura, 2017 # Kouhei Sutou , 2011 # shirou - しろう , 2017 @@ -18,107 +18,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-10 11:37+0000\n" -"Last-Translator: cocoatomo\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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 v%s以降のバージョンでなければビルドできません。" -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r が見つかりません。無視します。" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "完了" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "保存された環境データを読み込み中..." -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "まだ作られていません" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "失敗: %s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "ビルダーが選択されていないので、デフォルトの html を使用します" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "完了(問題あり)" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "ビルド %s, %s warning." -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "ビルド %s." -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "設定値 %r は既に登録済みです" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "拡張 %s のセットアップ中: nodeクラス %r は既に登録されています。visitor関数は上書きされます" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "%r の値は関数のタプル (visit, depart) で指定してください" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "拡張 %s のセットアップ中: ディレクティブ %r は既に登録されています。ディレクティブは上書きされます" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "拡張 %s のセットアップ中: ロール %r は既に登録されています。ロールは上書きされます" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -126,7 +152,7 @@ msgid "" "explicit" msgstr "拡張 %s は並列読み込みが可能かどうかを宣言していないため、おそらく並列読み込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -134,169 +160,289 @@ msgid "" "explicit" msgstr "拡張 %s は並列書き込みが可能かどうかを宣言していないため、おそらく並列書き込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" -msgstr "%s 章" +msgid "doing serial %s" +msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "図 %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "表 %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "リスト %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "設定値の辞書 %r は上書きないため無視されました (%r を使って個別に設定してください)" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "%r は設定値 %r の正しい値ではないため無視されました" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "%r は正しい型ではないため無視されました" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "不明な設定値 %r による上書きは無視されました" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "%s という設定値はありません" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "設定値 %r は既に登録済みです" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "%s 章" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "図 %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "表 %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "リスト %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "イベント %r はすでに登録されています" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "不明なイベント名: %s" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." -msgstr "needs_extensions設定で %s 拡張が要求されていますが、その拡張がありません。" +msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:165 +#, 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" +msgstr "" + +#: sphinx/registry.py:132 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "ビルダークラス %s には\"name\"属性がありません" -#: sphinx/registry.py:75 +#: sphinx/registry.py:134 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "ビルダー %r (モジュール %s) がすでに登録されています" -#: sphinx/registry.py:89 +#: sphinx/registry.py:148 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "ビルダー名 %s は登録されておらず、entry pointnにもありません" -#: sphinx/registry.py:97 +#: sphinx/registry.py:156 #, python-format msgid "Builder name %s not registered" msgstr "ビルダー名 %s は登録されていません" -#: sphinx/registry.py:105 +#: sphinx/registry.py:164 #, python-format msgid "domain %s already registered" msgstr "ドメイン %s はすでに登録されています" -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 #, python-format msgid "domain %s not yet registered" msgstr "ドメイン %s はまだ登録されていません" -#: sphinx/registry.py:132 +#: sphinx/registry.py:202 #, python-format -msgid "new domain not a subclass of registered %s domain" -msgstr "新しいドメインは登録済みのドメイン %s のサブクラスではありません" +msgid "The %r directive is already registered to %d domain" +msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "%r のsource_parserはすでに登録されています" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "%s のsource_parserは登録されていません" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "%r のsource_inputはすでに登録されています" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "%s のsource_inputは登録されていません" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." -msgstr "%s ビルダーのTranslatorが変更されました。" +msgid "Translatoro for %r already exists" +msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, 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:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "元の例外:\n" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "拡張 %s をimportできません" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "拡張 %r には setup() 関数がありません。これは本当にSphinx拡張ですか?" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -328,6 +474,11 @@ msgstr "テーマ %r が %r から継承されていますが、見つかりま msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "設定 %s.%s がテーマ設定にありません" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -349,368 +500,1730 @@ msgstr "sphinx_rtd_theme への依存はバージョン1.4.0で解除されま msgid "no theme named %r found (missing theme.conf?)" msgstr "テーマ %r がありません(theme.confが見つからない?)" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "組み込み" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "モジュールレベル" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%Y年%m月%d日" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "総合索引" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "索引" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "次へ" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "前へ" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s ドキュメント" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (in " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "構成オプション" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "プロジェクトの基本オプション" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "拡張オプション" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "過度なインデント解除が検出されました" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "不正な caption です: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "\"%s\" と \"%s\" のオプションは同時に使用できません" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "インクルードファイル %r が見つからないか読み込めません" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "%r という名前のオブジェクトがインクルードファイル %r 内に見つかりません" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr " \"lineno-match\" は不連続な \"lines\" に対して使用できません" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "指定された %r に一致する行がインクルードファイル %r にありませんでした" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "この節の作者: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "モジュールの作者: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "コードの作者: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "作者: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "パラメータ" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "戻り値" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "戻り値の型" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C の関数)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C のメンバ変数)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C のマクロ)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C のデータ型)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C の変数)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "の関数" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "のメンバ変数" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "のマクロ" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "のデータ型" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "変数" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "バージョン %s で追加" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "バージョン %s で変更" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "バージョン %s で非推奨" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "テンプレートパラメータ" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "例外" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ のデータ型)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (C++ のコンセプト)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ のメンバ変数)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ の関数)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ のクラス)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++の enumerator)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "クラス" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "コンセプト" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "列挙型" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (組み込み関数)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s のメソッド)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (クラス)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (グローバル変数または定数)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s の属性)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "引数" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (モジュール)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "メソッド" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "データ" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "の属性" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "モジュール" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "数式 %s のラベルはすでに %s で使われています" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "キーワード" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "演算子" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "オブジェクト" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "例外" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "文" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "組み込み関数" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "変数" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "例外" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s モジュール)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (組み込み変数)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (%s モジュール)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (組み込みクラス)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (%s のクラス)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s のメソッド)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s の静的メソッド)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s の静的メソッド)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s のクラスメソッド)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s のクラスメソッド)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s の属性)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Pythonモジュール索引" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "モジュール" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "非推奨" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "例外" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "クラスメソッド" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "の静的メソッド" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (非推奨)" @@ -732,58 +2245,152 @@ msgstr "ディレクティブ" msgid "role" msgstr "ロール" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "環境変数; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sコマンドラインオプション; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "用語集の項目" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "文法トークン" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "参照ラベル" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "環境変数" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "プログラムオプション" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "document" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "モジュール索引" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "検索ページ" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -794,46 +2401,244 @@ msgstr "%sを参照" msgid "see also %s" msgstr "%sも参照" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "記号" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "'%s' オプション内に '+' または '-' が不足しています" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' は正しいオプションではありません" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' は正しい pyversion オプションではありません" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz ディレクティブはコンテンツとファイル名の両方の引数を持つことは出来ません" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "外部の Graphviz ファイル %r が見つからないか読み込めません" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "コンテンツのない \"graphviz\" ディレクティブを無視します" -#: sphinx/ext/graphviz.py:244 +#: sphinx/ext/graphviz.py:255 #, 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -843,7 +2648,7 @@ msgid "" "%s" msgstr "dot はエラー終了しました:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -853,26 +2658,32 @@ msgid "" "%s" msgstr "dot はファイルを出力しませんでした:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, 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:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[グラフ: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[グラフ]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "convert コマンド %r は実行できません。image_converter の設定を確認してください" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -882,171 +2693,314 @@ msgid "" "%s" msgstr "convert はエラー終了しました:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "この数式へのパーマリンク" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[ソース]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "数式 %s のラベルはすでに %s で使われています" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "課題" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> は、 %s の %d 行目です)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "元のエントリ" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[ドキュメント]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "モジュールコード" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

%s のソースコード

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "概要: モジュールコード" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

全モジュールのうち、コードを読めるもの

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "ベースクラス: %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` のエイリアス" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "キーワード引数" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "サンプル" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "メモ" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "注意" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "ご用心" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "危険" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "エラー" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "ヒント" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "重要" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "注釈" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "参考" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "ちなみに" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "警告" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "バージョン %s で追加" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "バージョン %s で変更" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "バージョン %s で非推奨" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "キーワード" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "演算子" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "オブジェクト" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "文" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "組み込み関数" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "前のページからの続き" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "目次" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "検索" @@ -1127,35 +3081,35 @@ msgstr "大きい場合があるので注意" msgid "Navigation" msgstr "ナビゲーション" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s 内を検索" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "このドキュメントについて" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "著作権" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "最終更新: %(last_updated)s" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1183,13 +3137,13 @@ msgstr "次のトピックへ" msgid "next chapter" msgstr "次の章へ" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "検索機能を使うには JavaScript を有効にしてください。" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1197,20 +3151,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "このページからドキュメントを検索できます。キーワードを下のボックスに入力して、「検索」をクリックしてください。入力された全てのキーワードを含むページが検索されます。一部のキーワードしか含まないページは検索結果に表示されないので注意してください。" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "検索" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "検索結果" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1252,36 +3206,36 @@ msgstr "C API に関する変更" msgid "Other changes" msgstr "その他の変更" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "このヘッドラインへのパーマリンク" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "この定義へのパーマリンク" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "検索結果を隠す" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "検索中" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "検索を準備しています..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "検索が完了し、 %s ページ見つけました。" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", in " @@ -1298,68 +3252,223 @@ msgstr "サイドバーをたたむ" msgid "Contents" msgstr "コンテンツ" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:142 #, 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "%s:%s の参照ターゲットが見つかりません: %%(target)s" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "%r の参照ターゲットが見つかりません: %%(target)s" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "ディレクティブのクラスを追加した際に、おそらく追加の引数が指定されまえんでした" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "このコードへのパーマリンク" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "この画像へのパーマリンク" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "この目次へのパーマリンク" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "リリース" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "次のページに続く" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "不明な設定値 latex_elements[%r] はスキップされました。" +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "注記" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[画像: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[画像]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, python-format +msgid "unknown node type: %r" +msgstr "" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.js b/sphinx/locale/ko/LC_MESSAGES/sphinx.js index 931524808..0216c970f 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": "", "© Copyright %(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 Sphinx %(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": "\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": "", "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 +Documentation.addTranslations({"locale": "ko", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(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"}); \ 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 cb6185046..84d433a22 100644 Binary files a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 8e69f3db3..dae960e9d 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -7,107 +7,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -115,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -123,169 +149,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -317,6 +463,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -338,368 +489,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "기본" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "모듈 수준" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%Y년 %m월 %d일" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "전체 색인" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "색인" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "다음" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "이전" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "매개 변수" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "반환" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "반환 형식" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C 함수)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C 멤버 변수)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C 매크로)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C 데이터 형식)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C 변수)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "함수" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "멤버 변수" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "매크로" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "데이터 형식" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "변수" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "버전 %s에 추가" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "버전 %s으로 변경" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "버전 %s 폐지" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "예외" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ 데이터 형식)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++의 멤버 변수)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ 함수)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ 클래스)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "클래스" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() 내장 함수)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 메서드)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (클래스)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (전역 변수 또는 상수)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s의 속성)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "인수" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (모듈)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "메소드" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "데이터" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "속성" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "모듈" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "키워드" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "연산자" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "객체" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "예외" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "글" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "내장 함수" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "변수" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "예외" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s 모듈)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (%s 모듈)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 종류)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s의 정적 메서드)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 클래스 메서드)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python 모듈 목록" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "모듈" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "폐지" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "예외" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "클래스 메소드" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "정적 메서드" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -721,58 +2234,152 @@ msgstr "지시자" msgid "role" msgstr "역할" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "환경 변수; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%s 명령; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "용어의 항목" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "문법 토큰" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "참조 레이블" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "환경 변수" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "프로그램 옵션" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "모듈 목록" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "검색 페이지" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -783,46 +2390,244 @@ msgstr "%s 문서" msgid "see also %s" msgstr "%s 참조" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -832,7 +2637,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -842,26 +2647,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -871,171 +2682,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[소스]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "과제" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "원래 항목" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[문서]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "모듈 코드" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "설명: 모듈 코드" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "주의" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "조심" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "위험" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "오류" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "힌트" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "중요" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "주석" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "더 보기" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "참고" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "경고" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "버전 %s에 추가" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "버전 %s으로 변경" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "버전 %s 폐지" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "키워드" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "연산자" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "객체" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "글" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "내장 함수" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "이전 페이지에서 계속" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "목차" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "검색" @@ -1116,35 +3070,35 @@ msgstr "큰 경우가 있으므로 주의" msgid "Navigation" msgstr "탐색" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s에서 찾기" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "이 문서 정보" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "저작권" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "최종 업데이트: %(last_updated)s" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1172,13 +3126,13 @@ msgstr "다음 항목" msgid "next chapter" msgstr "다음 장" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1186,20 +3140,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "검색" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "검색 결과" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1241,36 +3195,36 @@ msgstr "C API에 대한 변경" msgid "Other changes" msgstr "다른 변경 사항" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "제목 주소" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "정의 주소" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "검색 결과 숨기기" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1287,68 +3241,223 @@ msgstr "사이드바 닫기" msgid "Contents" msgstr "내용" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "출시" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "참고" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[그림]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 8a141074b..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sukurta naudojant Sphinx %(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": "Turinys", "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!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "lt", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sukurta naudojant Sphinx %(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 c7ab7d735..bb09b0e54 100644 Binary files a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index d03765633..a2401dbc1 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\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:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Įtaisytieji" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Modulio lygis" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%Y-%m-%d" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Bendras indeksas" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "indeksas" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "kitas" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "praeitas" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (kuris yra " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Skyriaus autorius: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Modulio autorius: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Kodo autorius: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autorius: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametrai" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Grąžinamos reikšmės" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Grąžinamos reikšmės tipas" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C funkcija)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C narys)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C makrokomanda)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C tipas)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C kintamasis)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "narys" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makrokomanda" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tipas" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "kintamasis" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Nauja %s versijoje" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Pakeista %s versijoje" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Nebepalaikoma nuo %s versijos" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Išmeta" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tipas)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ narys)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funkcija)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "klasė" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (itaisytoji funkcija)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodas)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (klasė)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globalus kintamasis arba konstanta)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributas)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumentais" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metodas" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "duomenys" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atribudas" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modulis" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "bazinis žodis" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operatorius" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objektas" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "išimtis" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "sakinis" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "įtaisytoji funkcija" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Kintamieji" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Sukelia" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (modulyje %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (įtaisytasis kintamasis)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (modulje %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (įtaisytoji klasė)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (klasė iš %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodas)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statinis metodas)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statinis metodas)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klasės metodas)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klasės metodas)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributas)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moduliai" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Atmestas" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "išimtis" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "klasės metodas" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statinis metodas" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (atmestas)" @@ -722,58 +2235,152 @@ msgstr "direktyva" msgid "role" msgstr "rolė" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "aplinkos kintamasis; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%skomandinės eilutės parinktis; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "aiškinamasis terminas" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "gramatinė leksema" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "nuorodos požymis" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "aplinkos kintamasis" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "programos parinktis" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Modulio indeksas" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Paieškos puslapis" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[šaltinis]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Padaryti" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "originalus įrašas" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[dokumentai]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Modulio kodas" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Kodas %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Apžvalga: modulio kodas" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Visi moduliai turintys kodą

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` alternatyvus vardas" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Dėmesio" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Atsargiai" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Pavojinga" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Klaida" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Patarimas" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Svarbu" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Pastaba" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Taip pat žiūrėkite" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Patarimas" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Įspėjimas" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Nauja %s versijoje" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Pakeista %s versijoje" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Nebepalaikoma nuo %s versijos" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "bazinis žodis" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operatorius" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objektas" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "sakinis" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "įtaisytoji funkcija" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "tęsinys iš praeito puslapio" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Tęsinys kitame puslapyje" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Turinys" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Paieška" @@ -1117,35 +3071,35 @@ msgstr "gali būti didelis" msgid "Navigation" msgstr "Navigacija" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Ieškoti tarp %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Apie šiuos dokumentus" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Autoriaus teisės" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Paskutinis atnaujinimas %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "Kita tema" msgid "next chapter" msgstr "kita dalis" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1187,20 +3141,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "ieškoti" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Paieškos rezultatai" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "C API pakeitimai" msgid "Other changes" msgstr "Kiti pakeitimai" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Nuoroda į šią antraštę" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Nuoroda į šį apibrėžimą" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Paslėpti paieškos rezultatus" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1288,68 +3242,223 @@ msgstr "Paslėpti šoninę juostą" msgid "Contents" msgstr "Turinys" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Leidimas" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Išnašos" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[paveiksliukas]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 20aa16ed5..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sagatavots izmantojot Sphinx %(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": "Saturs", "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 +Documentation.addTranslations({"locale": "lv", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sagatavots izmantojot Sphinx %(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 f38ace7eb..8ef4a6b74 100644 Binary files a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index 55b6432c5..76b25f322 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -7,107 +7,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -115,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -123,169 +149,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -317,6 +463,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -338,368 +489,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Iebūvētie" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Moduļu līmenis" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Vispārējs indekss" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "indekss" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "nākošais" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "iepriekšējs" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (iekš " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Sekcijas autors: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Moduļa autors: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Koda autors: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autors: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Atgriež" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Atgriežamais tips" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C funkcija)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C loceklis)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C makross)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C tips)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C mainīgais)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "loceklis" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makross" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tips" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "mainīgais" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Jauns versijā %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Mainīts versijā %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Neieteicams no versijas %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Izmet" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tips)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ loceklis)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funkcija)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ klase)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "klase" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (iebūvēta funkcija)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metods)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, 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:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributs)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumenti" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metods" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atributs" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modulis" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "atslēgas vārds" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operators" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objekts" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "izņēmums" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "priekšraksts" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "iebūvēta funkcija" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Mainīgie" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Ceļ" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moduļī %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (iebūvētais mainīgais)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (moduļī %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (iebūvēta klase)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (klase iekš %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metods)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statiskais metods)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statiskais metods)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klases metods)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klases metods)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributs)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moduļi" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Nav ieteicams" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "izņēmums" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "klases metods" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statiskais metods" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -721,58 +2234,152 @@ msgstr "direktīva" msgid "role" msgstr "role" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "apkārtnes mainīgais; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%skomandrindas opcija; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "glosārija termins" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "gramatiskais marķieris" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "atsauces virsraksts" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "apkārtnes mainīgais" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "programmas opcija" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Moduļu indekss" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Atlases lapa" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -783,46 +2390,244 @@ msgstr "" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -832,7 +2637,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -842,26 +2647,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -871,171 +2682,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[kods]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Jāizdara" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "sākotnējs ieraksts" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[dokumenti]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Moduļa teksts" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

%s izejas teksts

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Apskats: moduļa teksts" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Visi moduļi, kuriem ir izejas teksti

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "aizstājvārds klasei :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Uzmanību" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Uzmanies" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Bīstami" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Kļūda" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Mājiens" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Svarīgi" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Piezīme" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Skat.arī" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Padoms" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Brīdinājums" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Jauns versijā %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Mainīts versijā %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Neieteicams no versijas %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "atslēgas vārds" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operators" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objekts" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "priekšraksts" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "iebūvēta funkcija" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "turpinājums no iepriekšējās lappuses" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Turpnājums nākošā lappusē" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Saturs" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Meklēt" @@ -1116,35 +3070,35 @@ msgstr "var būt milzīgs" msgid "Navigation" msgstr "Navigācija" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Meklēt iekš %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Par šiem dokumentiem" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Pēdējas izmaiņas %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1172,13 +3126,13 @@ msgstr "nākoša tēma" msgid "next chapter" msgstr "nākoša sadaļa" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1186,20 +3140,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "meklēt" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Atlases rezultāti" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1241,36 +3195,36 @@ msgstr "Izmaiņas iekš C API" msgid "Other changes" msgstr "Citas izmaiņas" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Pastāvīga norāde šo virsrakstu" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Pastāvīga norāde uz šo definīciju" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Paslēpt atlases vārdus" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1287,68 +3241,223 @@ msgstr "Savērst sānjoslu" msgid "Contents" msgstr "Saturs" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Izlaidums" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Vēres" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "[attēls: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[attēls]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 542936e20..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": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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 +Documentation.addTranslations({"locale": "mk", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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 b9af20fb0..4dc52f8a0 100644 Binary files a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index b91b7208d..d5a243823 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Вградени" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Ниво на модул" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Главна содржина" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "содржина" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "следна" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "претходна" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s документација" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (во " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Автор на секцијата:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Автор на модул:" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Автор на код:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Автор: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Враќа" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Повратен тип" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C функција)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C член)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C макро)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C тип)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C променлива)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "член" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "макро" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "променлива" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Фрла" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ тип)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ член)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ функција)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ класа)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "класа" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (вградена функција)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (класа)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -722,58 +2235,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "погледни %s" msgid "see also %s" msgstr "погледни %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Симболи" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "" @@ -1117,35 +3071,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1187,20 +3141,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1288,68 +3242,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 aa6e6944c..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Lagd med Sphinx %(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": "Innholdsfortegnelse", "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 +Documentation.addTranslations({"locale": "nb_NO", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Lagd med Sphinx %(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 f843f427d..da5567ec6 100644 Binary files a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 7b7d4228a..104940268 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,107 +7,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -115,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -123,169 +149,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -317,6 +463,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -338,368 +489,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Innebygde" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Modulnivå" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Hovedindex" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "index" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "neste" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "forrige" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "(i " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Seksjon forfatter: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Modul forfattar: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Kildekode forfatter: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Forfatter: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametere" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Returnere" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Retur type" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C-funktion)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C-medlem)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C-makro)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C-type)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funksjon" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "type" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variabel" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Nytt i version %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Endret i version %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Foreldet siden version %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ type)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ medlem)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funksjon)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ klasse)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (innebygd funksjon)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metode)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argument" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "attributt" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "nøkkelord" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operator" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objekt" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "untak" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "uttrykk" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "innebygde funksjoner" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Hever" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (innebygd variabel)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (innebygd klasse)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metode)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statisk metode)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metode)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klassemetode)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemetode)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attributt)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Foreldet" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "untak" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (foreldet)" @@ -721,58 +2234,152 @@ msgstr "direktiv" msgid "role" msgstr "rolle" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "miljøvariabel; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%skommandolinje valg; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "ordliste" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "grammatikk token" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "referanse-etikett" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "programvalg" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søkeside" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -783,46 +2390,244 @@ msgstr "se %s" msgid "see also %s" msgstr "se også %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -832,7 +2637,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -842,26 +2647,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -871,171 +2682,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[kilde]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "opprinnelig oppføring" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[dokumentasjon]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Modul kildekode" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Kildekode for %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Oversikt: modulkildekode" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Alla moduler hvor kildekode finnes

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias for :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Obs" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Advarsel" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Fare" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Feil" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Viktig" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Obs" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Se også" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Tips" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Advarsel" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Nytt i version %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Endret i version %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Foreldet siden version %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "nøkkelord" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operator" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objekt" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "uttrykk" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "innebygde funksjoner" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "fortsettelse fra forrige side" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Fortsetter på neste side" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Innholdsfortegnelse" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Søk" @@ -1116,35 +3070,35 @@ msgstr "kan bli stor" msgid "Navigation" msgstr "Navigering" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Søk blant %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Om disse dokumenter" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Sist oppdatert %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1172,13 +3126,13 @@ msgstr "Neste emne" msgid "next chapter" msgstr "neste kapittel" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Vennligst aktiver JavaScript for å aktivere søk." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1186,20 +3140,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "søk" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Søkeresultat" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1241,36 +3195,36 @@ msgstr "Endringer i C API" msgid "Other changes" msgstr "Andre endringer" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Permalink til denne oversikten" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Permalink til denne definisjonen" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Skjul søkeresultat" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1287,68 +3241,223 @@ msgstr "Skjul sidepanelet" msgid "Contents" msgstr "Innhold" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Utgivelse" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[bilde]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 a92aafcb9..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": "", "© Copyright %(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 Sphinx %(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": "\u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940", "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 +Documentation.addTranslations({"locale": "ne", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(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 167c067e0..330f22bd5 100644 Binary files a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index bf45880f7..f58b1e7ae 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,107 +9,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -117,7 +143,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -125,169 +151,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -319,6 +465,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -340,368 +491,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "बिइल्टिन्स" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "मडुलको तह" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "सामान्य अनुसुची" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "अनुसुची" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "पछिल्लो" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "अघिल्लो" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "(in" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "सेक्सनको लेखक" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "मडुलको लेखक" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Codeको लेखक " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "लेखक" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C कार्य)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C सदस्य)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C बृहत)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C किसिम)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C चल)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "फन्क्सन" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "बृहत" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "किसिम" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "चल" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "भर्सन %s मा नयाँ" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "भर्सन %s मा बदलिएको" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Deprecated since version %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ किसिम)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ सदस्य)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++कार्य)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ कक्षा)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "कक्षा" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधी)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (कक्षा)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (मडुल)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "विधी" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "attribute" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "मडुल" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "मुख्य शब्द" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "सन्चालक" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "object" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "अपबाद" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "भनाई" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "built-in फन्क्सन" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "चलहरू" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in मडुल %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in चल)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (in मडुल %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in कक्षा)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (कक्षा in %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s विधी)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s static विधी)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static विधी)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s कक्षा विधी)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s कक्षा विधी)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribute)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "अपबाद" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "कक्षा विधी" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "static विधी" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "(deprecated)" @@ -723,58 +2236,152 @@ msgstr "निर्देशिक" msgid "role" msgstr "भूमिका" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "environment variable; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%scommand line option; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "शब्द-अर्थमा भएको" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "grammar token" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "सन्दर्व सामग्री" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "environment variable" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "कार्यक्रमका बिकल्प" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "मडुल अनुसुची" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "पानामा खोज्नुहोस्" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -785,46 +2392,244 @@ msgstr "%s हेर्नुहोस्" msgid "see also %s" msgstr "%s पनि हेर्नुहोस् " -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -834,7 +2639,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -844,26 +2649,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -873,171 +2684,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[स्रोत]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "मौलिक इन्ट्री" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Module code" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Source code for %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "पुनरावलोकन: module code" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

All modules for which code is available

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias of :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "ध्यानाकर्षण" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "होसियार " -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "खतरा" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "गलत" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "सङ्केत" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "जरुरी" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "टिप्पणी" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "पनि हेर्नुहोस" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "साबधान" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "भर्सन %s मा नयाँ" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "भर्सन %s मा बदलिएको" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Deprecated since version %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "मुख्य शब्द" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "सन्चालक" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "object" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "भनाई" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "built-in फन्क्सन" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "अघिल्लो पानासँग जोडीएको" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "विषयसूची" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "खोज्नुहोस् " @@ -1118,35 +3072,35 @@ msgstr "धेरै ठुलो हुन सक्छ" msgid "Navigation" msgstr "नेभिगेसन " -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "यी डकुमेन्टहरुको बारेमा" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "कपिराइट " -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "यो भन्दा अगाडी %(last_updated)s मा अपडेट भएको" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1174,13 +3128,13 @@ msgstr "पछिल्लो विषय" msgid "next chapter" msgstr "पछिल्लो खन्ड" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "खोज्ने कार्य आगाडी बढाउनको लागि जाभास्कृप्ट चलाईदिनुहोस " -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1188,20 +3142,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "यहाँबाट तपाईंले यी ड्कुमेन्टहरु खोज्नसक्नु हुन्छ । खोज्न शब्दहरु\nतलको बक्समा लेख्‍नुहोस र \"खोज्नुहोस्\"थिच्नुहोस । खोज्नुहोस्\nफन्क्सनले आफै सबै शब्दहरु खोज्छ । \nथोरै शब्दहरु भएको पानाहरु नतिजामा देखिन्न । " -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "खोज्नुहोस्" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "खोजेको नतिजा" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1243,36 +3197,36 @@ msgstr "C API का परिवर्तनहरु " msgid "Other changes" msgstr "अरु परिवर्तनहरु " -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "यो शिर्षकको लागि पर्मालिन्क । " -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "यो अर्थको लागि पर्मालिन्क" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "खोजेको नतिजाहरु लुकाउनुहोस्" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1289,68 +3243,223 @@ msgstr "साइडबर सानो बनाउनुहोस्" msgid "Contents" msgstr "विषयसूची" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "रीलीज" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "फूट्नोट्स" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[चित्र]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 561c9ec39..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", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Aangemaakt met Sphinx %(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": "Inhoudsopgave", "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 +Documentation.addTranslations({"locale": "nl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Aangemaakt met Sphinx %(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 9aa74952c..eca0c4320 100644 Binary files a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 45bd2eda3..aa68fc8dd 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -4,114 +4,141 @@ # # Translators: # Bram Geron , 2017 -# Brecht Machiels , 2016 +# brechtm, 2016 +# brechtm, 2018 # FIRST AUTHOR , 2008 # Jesse Tan, 2017 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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 "Dit project vereist tenminste Sphinx v%s, en kan daarom niet worden gebouwd met deze versie." -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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' 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." -#: sphinx/application.py:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r onbekend, wordt genegeerd." -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "klaar" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "opgeslagen omgeving wordt geladen..." -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "nog niet gecreëerd" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "mislukt: %s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "Geen bouwer geselecteerd, dus de standaardbouwer wordt gebruikt: html" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "gelukt" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "afgerond met problemen" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." -msgstr "" +msgstr "bouwen %s, %s waarschuwing." -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "bouwen %s." -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "Configuratiewaarde %r was reeds aangevoerd" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, 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" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "Waarde voor sleutel %r moet een (visit, depart) functietupel zijn" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, 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" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "tijdens gereedmaken extensie %s: rol %r is reeds geregistreerd en zal worden overschreven" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -119,177 +146,297 @@ 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:696 +#: sphinx/application.py:1274 #, 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 "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 +#, python-format +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:133 -#, python-format -msgid "Section %s" -msgstr "Sectie %s" - -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Fig. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tabel %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Codefragment %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, 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:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ongeldig getal %r voor configuratiewaarde %r, wordt genegeerd" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, 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:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "onbekende configuratiewaarde %r tijdens overschrijven, wordt genegeerd" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "Ongeldige configuratiewaarde: %s" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "Configuratiewaarde %r was reeds aangevoerd" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Sectie %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Fig. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tabel %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Codefragment %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "Gebeurtenis %r bestaat reeds" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "Onbekende gebeurtenisnaam: %s" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:165 +#, 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" +msgstr "" + +#: sphinx/registry.py:132 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Bouwerklasse %s heeft geen \"name\"-attribuut" -#: sphinx/registry.py:75 +#: sphinx/registry.py:134 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Bouwer %r bestaat reeds (in module %s)" -#: sphinx/registry.py:89 +#: sphinx/registry.py:148 #, 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:97 +#: sphinx/registry.py:156 #, python-format msgid "Builder name %s not registered" msgstr "Bouwernaam %s is niet geregistreerd" -#: sphinx/registry.py:105 +#: sphinx/registry.py:164 #, python-format msgid "domain %s already registered" msgstr "domein %s was reeds geregistreerd" -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 #, python-format msgid "domain %s not yet registered" msgstr "domein %s nog niet geregistreerd" -#: sphinx/registry.py:132 +#: sphinx/registry.py:202 #, python-format -msgid "new domain not a subclass of registered %s domain" -msgstr "nieuw domein geen subklasse van geregistreerd domein %s" +msgid "The %r directive is already registered to %d domain" +msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser voor %r is reeds geregistreerd" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" -msgstr "" +msgstr "Broncode-parservoor %s is niet geregistreerd" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" -msgstr "" +msgstr "source_input voor %r is reeds geregistreerd" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" -msgstr "" +msgstr "source_input voor %s is niet geregistreerd" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, 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:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "Oorspronkelijke exceptie:\n" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "Kon extensie %s niet importeren" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, 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:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -321,10 +468,15 @@ msgstr "thema met naam %r niet gevonden, geërfd door %r" 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 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." -msgstr "" +msgstr "Thema-extensie %r gedraagt zich niet correct." #: sphinx/theming.py:265 #, python-format @@ -342,368 +494,1730 @@ msgstr "sphinx_rtd_theme is sinds versie 1.4.0 niet langer een harde afhankelijk msgid "no theme named %r found (missing theme.conf?)" msgstr "thema met naam %r niet gevonden (ontbrekende theme.conf?)" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Moduleniveau" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Algemene index" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "index" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "volgende" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "vorige" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s documentatie" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (in " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "Overmatige negative inspringing gevonden" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "Ongeldig onderschrift: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, 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:214 +#: sphinx/directives/code.py:223 #, 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:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, 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:280 +#: sphinx/directives/code.py:289 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:285 +#: sphinx/directives/code.py:294 #, 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:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Auteur van deze sectie: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Auteur van deze module: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Auteur van deze broncode:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Auteur: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C-functie)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C-member)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C-macro)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C-type)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C-variabele)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "functie" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "member" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "type" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variabele" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Nieuw in versie %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Veranderd in versie %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Verouderd sinds versie %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Sjabloonparameters" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Werpt" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++-type)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (C++ concept)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++-member)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++-functie)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++-klasse)" -#: sphinx/domains/cpp.py:5678 +#: 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)" -#: sphinx/domains/cpp.py:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++ enumerator)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ingebouwde functie)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s methode)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globale variabele of constante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribuut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumenten" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "methode" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "attribuut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "module" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, 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 +msgid "keyword" +msgstr "trefwoord" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operator" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "object" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "exceptie" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "statement" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "ingebouwde functie" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variabelen" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Veroorzaakt" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (geïntegreerde variabele)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (geïntegreerde klasse)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse in %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (methode van %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statische methode van %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische methode van %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klassemethode)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemethode)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (attribuut van %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python-moduleïndex" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Verouderd" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "exceptie" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "klassemethode" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statische methode" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (verouderd)" @@ -725,58 +2239,152 @@ msgstr "directive" msgid "role" msgstr "rol" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "omgevingsvariabele; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sopdrachtregel-optie; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "woordenlijstterm" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "grammaticatoken" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "verwijzingslabel" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "omgevingsvariabele" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "programmaoptie" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "document" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Module-index" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Zoekpagina" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -787,46 +2395,244 @@ msgstr "zie %s" msgid "see also %s" msgstr "zie %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Symbolen" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "ontbrekende '+' of '-' in optie '%s'." -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' is geen geldige optie." -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' is geen geldige pyversion optie" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 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:147 +#: sphinx/ext/graphviz.py:149 #, 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:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "\"graphviz\" directive zonder inhoud wordt genegeerd." -#: sphinx/ext/graphviz.py:244 +#: sphinx/ext/graphviz.py:255 #, 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -836,7 +2642,7 @@ msgid "" "%s" msgstr "dot is gestopt met een foutmelding:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -846,26 +2652,32 @@ msgid "" "%s" msgstr "dot heeft geen output bestand gegenereerd:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, 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:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[graaf: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[graaf]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, 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:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -875,171 +2687,314 @@ msgid "" "%s" msgstr "convert is gestopt met een foutmelding:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "Permalink naar deze formule" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" -msgstr "" +msgstr "(in %s)" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[broncode]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "duplicaatlabel van formule %s, andere in %s" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Te doen" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Het <> bevindt zich in %s, regel %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "originele item" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[documentatie]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Modulebroncode" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Broncode voor %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Overzicht: module broncode" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Alle modules waarvoor de broncode beschikbaar is

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "Basisklassen: %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias voor :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "Sleutelwoordargumenten" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Let op" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Pas op" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Gevaar" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Fout" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Belangrijk" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Notitie" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Zie ook" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Waarschuwing" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Nieuw in versie %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Veranderd in versie %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Verouderd sinds versie %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "trefwoord" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operator" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "object" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "statement" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "ingebouwde functie" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "Vervolgd van vorige pagina" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Vervolgd op volgende pagina" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Inhoudsopgave" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Zoeken" @@ -1120,35 +3075,35 @@ msgstr "kan heel groot zijn" msgid "Navigation" msgstr "Navigatie" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Zoeken in %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Over deze documenten" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Laatste aanpassing op %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1176,13 +3131,13 @@ msgstr "Volgend onderwerp" msgid "next chapter" msgstr "volgend hoofdstuk" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Activeer JavaSscript om de zoekfunctionaliteit in te schakelen." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1190,20 +3145,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "zoeken" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Zoekresultaten" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1245,36 +3200,36 @@ msgstr "Veranderingen in de C-API" msgid "Other changes" msgstr "Andere veranderingen" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Permalink naar deze titel" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Permalink naar deze definitie" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Zoekresultaten verbergen" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Bezig met zoeken" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Zoeken aan het voorbereiden..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", in" @@ -1291,68 +3246,223 @@ msgstr "Zijpaneel inklappen" msgid "Contents" msgstr "Inhoudsopgave" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:142 #, 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, 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:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "%r verwijzingsdoel niet gevonden: %%(target)s" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 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" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Permalink naar deze tabel" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Permalink naar deze broncode" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Permallink naar deze afbeelding" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Permalink naar deze toctree" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Release" -#: sphinx/writers/latex.py:714 -msgid "continues on next page" +#: sphinx/writers/latex.py:531 +#, python-format +msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:718 +#: sphinx/writers/latex.py:582 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/writers/latex.py:633 +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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "Onbekende configuratiesleutel: latex_elements[%r] wordt genegeerd" +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Voetnoten" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[afbeelding: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[afbeelding]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 776866efa..c04fd6654 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", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Utworzone przy pomocy Sphinx'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 +Documentation.addTranslations({"locale": "pl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Utworzone przy pomocy Sphinx'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)"}); \ 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 03b1761b9..318e569b5 100644 Binary files a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 6d0d655fb..1577af1eb 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -5,112 +5,139 @@ # Translators: # m_aciek , 2017-2018 # Michael Gielda , 2014 -# Tawez, 2013-2017 +# Takeshi KOMIYA , 2018 +# Tawez, 2013-2018 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-10 18:40+0000\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, 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 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "Nie odnaleziono katalogu źródłowego (%s)" + +#: sphinx/application.py:160 +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 +#, python-format +msgid "Running Sphinx v%s" +msgstr "Uruchamianie Sphinksa 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 "Ten projekt potrzebuje Sphinksa w wersji co najmniej %s, dlatego nie może zostać zbudowany z tą wersją." -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "tworzenie katalogu wyjścia..." + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "Nie odnaleziono primary_domain %r, zignorowano." -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "gotowe" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +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:289 -msgid "not yet created" -msgstr "jeszcze nie utworzony" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "nie powiodło się: %s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "Nie wybrano buildera, używamy domyślnego: html" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "udało się" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "zakończono z problemami" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s ostrzeżenie." -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "Wartość konfiguracji %r już podana" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, 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" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "Wartość dla klucza %r musi być krotką funkcji (odwiedź, opuść)" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, 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" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "podczas uruchamiania rozszerzenia %s: rola %r jest już zarejestrowana, zostanie nadpisana" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -118,7 +145,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:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -126,169 +153,289 @@ 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/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" -msgstr "Rozdział %s" +msgid "doing serial %s" +msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Rys. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tabela %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Listing %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, 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:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "niepoprawna liczba %r dla wartości konfiguracji %r, ignorowanie" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, 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:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nieznana wartość konfiguracji %r w nadpisaniu, ignorowanie" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "Nie ma takiej wartości konfiguracyjnej: %s" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "Wartość konfiguracji %r już podana" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "W twoim piku konfiguracyjnym jest błąd składniowy: %s" + +#: 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 +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 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to 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'." + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Rozdział %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Rys. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tabela %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Listing %s" + +#: sphinx/config.py:441 +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 +msgid "" +"The config value `{name}' has type `{current.__name__}', expected to " +"{permitted}." +msgstr "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "Zdarzenie %r już obecne" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "Nieznana nazwa zdarzenia: %s" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." -msgstr "Rozszerzenie %s jest wymagane przez ustawienia needs_extensions, ale nie jest załadowane." +msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:165 +#, 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" +msgstr "" + +#: sphinx/registry.py:132 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Klasa buildera %s nie ma atrybutu \"name\"" -#: sphinx/registry.py:75 +#: sphinx/registry.py:134 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r już istnieje (w module %s)" -#: sphinx/registry.py:89 +#: sphinx/registry.py:148 #, 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:97 +#: sphinx/registry.py:156 #, python-format msgid "Builder name %s not registered" msgstr "Builder o nazwie %s jest niezarejestrowany" -#: sphinx/registry.py:105 +#: sphinx/registry.py:164 #, python-format msgid "domain %s already registered" msgstr "domena %s jest już zarejestrowana" -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 #, python-format msgid "domain %s not yet registered" msgstr "domena %s nie została jeszcze zarejestrowana" -#: sphinx/registry.py:132 +#: sphinx/registry.py:202 #, python-format -msgid "new domain not a subclass of registered %s domain" -msgstr "nowa domena nie jest podklasą zarejestrowanej domeny %s" +msgid "The %r directive is already registered to %d domain" +msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "source_suffix %r jest już zarejestrowany" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser dla %r jest już zarejestrowany" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "Parser źródeł dla %s jest nie zarejestrowany" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "source_input dla %r jest już zarejestrowany" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "source_input dla %s jest nie zarejestrowany" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." -msgstr "Zmiana translatora dla buildera %s." +msgid "Translatoro for %r already exists" +msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, 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:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "Pierwotny wyjątek:\n" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "Nie można zaimportować rozszerzenia %s" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, 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:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -320,6 +467,11 @@ msgstr "nie znaleziono motywu o nazwie %r, z którego dziedziczy %r" 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 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -341,368 +493,1730 @@ msgstr "sphinx_rtd_theme nie jest już twardą zależnością od wersji 1.4.0. P msgid "no theme named %r found (missing theme.conf?)" msgstr "nie znaleziono motywu o nazwie %r (brak theme.conf?)" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "budowanie [mo]:" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "pisanie wyjścia..." + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "wszystkie z %d plików po" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "wsztstkie pliki źródłowe" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "budowanie [%s]" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, 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..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "pisanie pliku %s..." + +#: sphinx/builders/_epub_base.py:541 +#, 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 "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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "brak zmian w wersji %s." + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Wbudowane" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Poziom modułu" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "kopiowanie plików źródłowych..." + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "Plik ePub znajduje się w %(outdir)s." + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks ogólny" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "indeks" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "dalej" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "wstecz" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s - dokumentacja" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (w " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "Witamy w narzędziu quickstart Sphinksa %s." + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "\nWybrana ścieżka root: %s" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "\nWprowadź ścieżkę root dla dokumentacji." + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "Ścieżka root dla dokumentacji" + +#: sphinx/cmd/quickstart.py:275 +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 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "sphinx-quickstart nie nadpisze istniejących projektów Sphinx." + +#: sphinx/cmd/quickstart.py:279 +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 +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 "\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 +msgid "Separate source and build directories (y/n)" +msgstr "Rozdziel katalogi source i build (y/n)" + +#: sphinx/cmd/quickstart.py:293 +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 "\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 +msgid "Name prefix for templates and static dir" +msgstr "Prefiks nazw dla katalogów templates i static" + +#: sphinx/cmd/quickstart.py:300 +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 +msgid "Project name" +msgstr "Nazwa projektu" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "Nazwisko autora" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "Wersja projektu" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "Wydanie projektu" + +#: sphinx/cmd/quickstart.py:318 +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 "\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 +msgid "Project language" +msgstr "Język projektu" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "Sufiks pliku źródłowego" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "Stworzyć Makefile? (y/n)" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "Tworzenie pliku %s." + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "Wykryto nadużycie" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "Nieprawidłowy podpis: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, 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:214 +#: sphinx/directives/code.py:223 #, 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:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, 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:280 +#: sphinx/directives/code.py:289 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:285 +#: sphinx/directives/code.py:294 #, 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:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Autor rozdziału: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Autor modułu: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Autor kodu: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Zwraca" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Typ zwracany" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (funkcja C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (pole C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (makro C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (typ C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (zmienna C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funkcja" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "pole" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "zmienna" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Nowe w wersji %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Zmienione w wersji %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Niezalecane od wersji %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Parametry szablonu" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Wyrzuca" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (typ C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (koncepcja C++)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (pole C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (funkcja C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (klasa C++)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (enumerator C++)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "klasa" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "koncepcja" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (klasa)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (zmienna globalna lub stała)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (moduł)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atrybut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "moduł" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, 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 +msgid "keyword" +msgstr "słowo kluczowe" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operator" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "obiekt" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "wyjątek" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "instrukcja" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "funkcja wbudowana" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Zmienne" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Wyrzuca" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metoda statyczna)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metoda klasy)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atrybut %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Indeks modułów Pythona" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moduły" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "wyjątek" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (niezalecane)" @@ -724,58 +2238,152 @@ msgstr "dyrektywa" msgid "role" msgstr "rola" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "zmienna środowiskowa; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sopcja linii komend; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "termin glosariusza" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "symbol gramatyki" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "etykieta odsyłacza" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "zmienna środowiskowa" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "opcja programu" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Indeks modułów" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Wyszukiwanie" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -786,46 +2394,244 @@ msgstr "zobacz %s" msgid "see also %s" msgstr "zobacz także %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Symbole" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "brak '+' lub '-' w opcji '%s'." -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' nie jest prawidłową opcją." -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' nie jest prawidłową opcją pyversion." -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 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:147 +#: sphinx/ext/graphviz.py:149 #, 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:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorujemy dyrektywę „graphviz” bez treści." -#: sphinx/ext/graphviz.py:244 +#: sphinx/ext/graphviz.py:255 #, 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -835,7 +2641,7 @@ msgid "" "%s" msgstr "dot zakończył się z błędem:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -845,26 +2651,32 @@ msgid "" "%s" msgstr "dot nie wyprodukował pliku wyjścia:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, 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:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[wykres: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[wykres]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, 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:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -874,171 +2686,314 @@ msgid "" "%s" msgstr "convert zakończył się z błędem:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "Stały odnośnik do tego równania" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(w %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr " (w %s)" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[źródło]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "zduplikowana etykieta równania %s, inne wystąpienie w %s" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> znajduje się w pliku %s, w linii %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "oryginalny wpis" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[dokumentacja]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Kod modułu" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Kod źródłowy modułu %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Przeglądanie: kod modułu" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Wszystkie moduły, dla których jest dostępny kod

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "Klasy bazowe: %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias klasy :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "Argumenty Nazwane" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Uwaga" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Ostrzeżenie" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Niebezpieczeństwo" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Błąd" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Podpowiedź" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Ważne" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Informacja" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Zobacz także" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Wskazówka" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Ostrzeżenie" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Nowe w wersji %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Zmienione w wersji %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Niezalecane od wersji %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "słowo kluczowe" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operator" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "obiekt" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "instrukcja" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "funkcja wbudowana" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "kontynuacja poprzedniej strony" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "Spis treści" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Szukaj" @@ -1119,35 +3074,35 @@ msgstr "może być ogromny" msgid "Navigation" msgstr "Nawigacja" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Szukaj pośród %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "O tych dokumentach" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Ostatnia modyfikacja %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1175,13 +3130,13 @@ msgstr "Następny temat" msgid "next chapter" msgstr "następny rozdział" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Aby umożliwić wyszukiwanie, proszę włączyć JavaScript." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1189,20 +3144,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "szukaj" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Wyniki wyszukiwania" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1244,36 +3199,36 @@ msgstr "Zmiany w C API" msgid "Other changes" msgstr "Inne zmiany" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Stały odnośnik do tego nagłówka" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Stały odnośnik do tej definicji" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Ukryj wyniki wyszukiwania" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Wyszukiwanie" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Inicjalizacja wyszukiwania..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", w " @@ -1290,68 +3245,223 @@ msgstr "Zwiń pasek boczny" msgid "Contents" msgstr "Treść" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:142 #, 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, 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:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "nie znaleziono celu referencji %r: %%(target)s" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "nie można podawać dodatkowych argumentów dodając klasy dyrektyw" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Stały odnośnik do tej tabeli" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Stały odnośnik do tego bloku kodu" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Stały odnośnik do tego obrazu" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Stały odnośnik do tego spisu treści" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Wydanie" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +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:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "Nieznany klucz konfiguracyjny: latex_elements[%r] jest ignorowany." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Przypisy" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[obraz: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[obraz]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 new file mode 100644 index 000000000..ae1e3c253 --- /dev/null +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.js @@ -0,0 +1 @@ +Documentation.addTranslations({"locale": "pt", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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 new file mode 100644 index 000000000..9dd8cf7b1 Binary files /dev/null and b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po new file mode 100644 index 000000000..52be73d22 --- /dev/null +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -0,0 +1,3463 @@ +# Translations template for Sphinx. +# Copyright (C) 2018 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: 2018-08-21 01:14+0900\n" +"PO-Revision-Date: 2013-04-02 08:44+0000\n" +"Last-Translator: FULL NAME \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" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.6.0\n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:244 +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 +#, 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 +msgid "done" +msgstr "" + +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 +msgid "loading pickled environment... " +msgstr "" + +#: sphinx/application.py:306 +#, python-format +msgid "failed: %s" +msgstr "" + +#: sphinx/application.py:316 +msgid "No builder selected, using default: html" +msgstr "" + +#: sphinx/application.py:347 +msgid "succeeded" +msgstr "" + +#: sphinx/application.py:347 +msgid "finished with problems" +msgstr "" + +#: sphinx/application.py:349 +#, python-format +msgid "build %s, %s warning." +msgstr "" + +#: sphinx/application.py:353 +#, python-format +msgid "build %s." +msgstr "" + +#: sphinx/application.py:626 +#, python-format +msgid "" +"while setting up extension %s: node class %r is already registered, its " +"visitors will be overridden" +msgstr "" + +#: sphinx/application.py:724 +#, python-format +msgid "" +"while setting up extension %s: directive %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 "" + +#: sphinx/application.py:1268 +#, 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:1274 +#, 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:1285 +#, python-format +msgid "doing serial %s" +msgstr "" + +#: sphinx/config.py:212 +#, python-format +msgid "" +"cannot override dictionary config setting %r, ignoring (use %r to set " +"individual elements)" +msgstr "" + +#: sphinx/config.py:221 +#, python-format +msgid "invalid number %r for config value %r, ignoring" +msgstr "" + +#: sphinx/config.py:226 +#, python-format +msgid "cannot override config setting %r with unsupported type, ignoring" +msgstr "" + +#: sphinx/config.py:256 +#, python-format +msgid "unknown config value %r in override, ignoring" +msgstr "" + +#: sphinx/config.py:274 +#, python-format +msgid "No such config value: %s" +msgstr "" + +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 +#, python-format +msgid "Event %r already present" +msgstr "" + +#: sphinx/events.py:64 +#, python-format +msgid "Unknown event name: %s" +msgstr "" + +#: sphinx/extension.py:55 +#, python-format +msgid "" +"The %s extension is required by needs_extensions settings, but it is not " +"loaded." +msgstr "" + +#: sphinx/extension.py:60 +#, 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 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:165 +#, 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" +msgstr "" + +#: sphinx/registry.py:132 +#, python-format +msgid "Builder class %s has no \"name\" attribute" +msgstr "" + +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 +#, python-format +msgid "source_parser for %r is already registered" +msgstr "" + +#: sphinx/registry.py:325 +#, python-format +msgid "Source parser for %s not registered" +msgstr "" + +#: sphinx/registry.py:343 +#, python-format +msgid "source_input for %r is already registered" +msgstr "" + +#: sphinx/registry.py:356 +#, python-format +msgid "source_input for %s not registered" +msgstr "" + +#: sphinx/registry.py:362 +#, python-format +msgid "Translatoro for %r already exists" +msgstr "" + +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 +#, 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 "" + +#: sphinx/registry.py:475 +#, python-format +msgid "Could not import extension %s" +msgstr "" + +#: sphinx/registry.py:478 +#, python-format +msgid "" +"extension %r has no setup() function; is it really a Sphinx extension " +"module?" +msgstr "" + +#: sphinx/registry.py:487 +#, 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 +#, 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 +#, python-format +msgid "Python Enhancement Proposals; PEP %s" +msgstr "" + +#: sphinx/theming.py:83 +#, python-format +msgid "theme %r doesn't have \"theme\" setting" +msgstr "" + +#: sphinx/theming.py:85 +#, python-format +msgid "theme %r doesn't have \"inherit\" setting" +msgstr "" + +#: sphinx/theming.py:91 +#, python-format +msgid "no theme named %r found, inherited by %r" +msgstr "" + +#: sphinx/theming.py:116 +#, python-format +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "" + +#: sphinx/theming.py:136 +#, 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 +#, python-format +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "" + +#: sphinx/theming.py:281 +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 +#, python-format +msgid "no theme named %r found (missing theme.conf?)" +msgstr "" + +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 +msgid "Builtins" +msgstr "" + +#: sphinx/builders/changes.py:91 +msgid "Module level" +msgstr "" + +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 +#, python-format +msgid "%b %d, %Y" +msgstr "" + +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +msgid "General Index" +msgstr "" + +#: sphinx/builders/html.py:590 +msgid "index" +msgstr "" + +#: sphinx/builders/html.py:654 +msgid "next" +msgstr "" + +#: sphinx/builders/html.py:663 +msgid "previous" +msgstr "" + +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 +#, 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +msgid " (in " +msgstr "" + +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 +msgid "Over dedent has detected" +msgstr "" + +#: sphinx/directives/code.py:95 +#, python-format +msgid "Invalid caption: %s" +msgstr "" + +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 +#, python-format +msgid "Cannot use both \"%s\" and \"%s\" options" +msgstr "" + +#: sphinx/directives/code.py:223 +#, python-format +msgid "Include file %r not found or reading it failed" +msgstr "" + +#: sphinx/directives/code.py:225 +#, 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 +#, python-format +msgid "Object named %r not found in include file %r" +msgstr "" + +#: sphinx/directives/code.py:289 +msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" +msgstr "" + +#: sphinx/directives/code.py:294 +#, python-format +msgid "Line spec %r: no lines pulled from include file %r" +msgstr "" + +#: sphinx/directives/other.py:169 +msgid "Section author: " +msgstr "" + +#: sphinx/directives/other.py:171 +msgid "Module author: " +msgstr "" + +#: sphinx/directives/other.py:173 +msgid "Code author: " +msgstr "" + +#: sphinx/directives/other.py:175 +msgid "Author: " +msgstr "" + +#: sphinx/domains/__init__.py:336 +#, 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 +msgid "Parameters" +msgstr "" + +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +msgid "Returns" +msgstr "" + +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 +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:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +msgid "function" +msgstr "" + +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +msgid "member" +msgstr "" + +#: sphinx/domains/c.py:260 +msgid "macro" +msgstr "" + +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +msgid "type" +msgstr "" + +#: sphinx/domains/c.py:262 +msgid "variable" +msgstr "" + +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:6283 +#, python-format +msgid "%s (C++ type)" +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 +msgid "class" +msgstr "" + +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 +msgid "concept" +msgstr "" + +#: sphinx/domains/cpp.py:6551 +msgid "enum" +msgstr "" + +#: sphinx/domains/cpp.py:6552 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/cpp.py:6617 +#, 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 +#, python-format +msgid "%s() (built-in function)" +msgstr "" + +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#, python-format +msgid "%s() (%s method)" +msgstr "" + +#: sphinx/domains/javascript.py:135 +#, python-format +msgid "%s() (class)" +msgstr "" + +#: sphinx/domains/javascript.py:137 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" + +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#, python-format +msgid "%s (%s attribute)" +msgstr "" + +#: sphinx/domains/javascript.py:205 +msgid "Arguments" +msgstr "" + +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#, python-format +msgid "%s (module)" +msgstr "" + +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +msgid "method" +msgstr "" + +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +msgid "data" +msgstr "" + +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 +msgid "module" +msgstr "" + +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 +msgid "Variables" +msgstr "" + +#: sphinx/domains/python.py:221 +msgid "Raises" +msgstr "" + +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#, python-format +msgid "%s() (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:435 +#, python-format +msgid "%s (built-in variable)" +msgstr "" + +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#, python-format +msgid "%s (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:456 +#, python-format +msgid "%s (built-in class)" +msgstr "" + +#: sphinx/domains/python.py:457 +#, python-format +msgid "%s (class in %s)" +msgstr "" + +#: sphinx/domains/python.py:494 +#, python-format +msgid "%s() (%s.%s method)" +msgstr "" + +#: sphinx/domains/python.py:506 +#, python-format +msgid "%s() (%s.%s static method)" +msgstr "" + +#: sphinx/domains/python.py:509 +#, python-format +msgid "%s() (%s static method)" +msgstr "" + +#: sphinx/domains/python.py:519 +#, python-format +msgid "%s() (%s.%s class method)" +msgstr "" + +#: sphinx/domains/python.py:522 +#, python-format +msgid "%s() (%s class method)" +msgstr "" + +#: sphinx/domains/python.py:532 +#, python-format +msgid "%s (%s.%s attribute)" +msgstr "" + +#: sphinx/domains/python.py:669 +msgid "Python Module Index" +msgstr "" + +#: sphinx/domains/python.py:670 +msgid "modules" +msgstr "" + +#: sphinx/domains/python.py:718 +msgid "Deprecated" +msgstr "" + +#: sphinx/domains/python.py:745 +msgid "class method" +msgstr "" + +#: sphinx/domains/python.py:746 +msgid "static method" +msgstr "" + +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 +msgid " (deprecated)" +msgstr "" + +#: sphinx/domains/rst.py:65 +#, python-format +msgid "%s (directive)" +msgstr "" + +#: sphinx/domains/rst.py:67 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:119 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:120 +msgid "role" +msgstr "" + +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 +#, python-format +msgid "environment variable; %s" +msgstr "" + +#: sphinx/domains/std.py:164 +#, 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 +#, python-format +msgid "%scommand line option; %s" +msgstr "" + +#: sphinx/domains/std.py:455 +msgid "glossary term" +msgstr "" + +#: sphinx/domains/std.py:456 +msgid "grammar token" +msgstr "" + +#: sphinx/domains/std.py:457 +msgid "reference label" +msgstr "" + +#: sphinx/domains/std.py:459 +msgid "environment variable" +msgstr "" + +#: sphinx/domains/std.py:460 +msgid "program option" +msgstr "" + +#: sphinx/domains/std.py:461 +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 +msgid "Module Index" +msgstr "" + +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "" + +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:85 +#, python-format +msgid "see %s" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:89 +#, python-format +msgid "see also %s" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +msgid "Symbols" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 +#, python-format +msgid "missing '+' or '-' in '%s' option." +msgstr "" + +#: sphinx/ext/doctest.py:148 +#, python-format +msgid "'%s' is not a valid option." +msgstr "" + +#: sphinx/ext/doctest.py:162 +#, python-format +msgid "'%s' is not a valid pyversion option" +msgstr "" + +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 +msgid "Graphviz directive cannot have both content and a filename argument" +msgstr "" + +#: sphinx/ext/graphviz.py:149 +#, python-format +msgid "External Graphviz file %r not found or reading it failed" +msgstr "" + +#: sphinx/ext/graphviz.py:155 +msgid "Ignoring \"graphviz\" directive without content." +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 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%s\n" +"[stdout]\n" +"%s" +msgstr "" + +#: sphinx/ext/graphviz.py:287 +#, 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 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#, 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 +#, python-format +msgid "" +"convert exited with error:\n" +"[stderr]\n" +"%s\n" +"[stdout]\n" +"%s" +msgstr "" + +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +msgid "Permalink to this equation" +msgstr "" + +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx.py:345 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +msgid "[source]" +msgstr "" + +#: sphinx/ext/todo.py:67 +msgid "Todo" +msgstr "" + +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 +msgid "<>" +msgstr "" + +#: sphinx/ext/todo.py:156 +#, python-format +msgid "(The <> is located in %s, line %d.)" +msgstr "" + +#: sphinx/ext/todo.py:165 +msgid "original entry" +msgstr "" + +#: sphinx/ext/viewcode.py:196 +msgid "[docs]" +msgstr "" + +#: sphinx/ext/viewcode.py:210 +msgid "Module code" +msgstr "" + +#: sphinx/ext/viewcode.py:216 +#, python-format +msgid "

Source code for %s

" +msgstr "" + +#: sphinx/ext/viewcode.py:242 +msgid "Overview: module code" +msgstr "" + +#: sphinx/ext/viewcode.py:243 +msgid "

All modules for which code is available

" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 +#, python-format +msgid "Bases: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1195 +#, 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 +msgid "Keyword Arguments" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 +msgid "Attention" +msgstr "" + +#: sphinx/locale/__init__.py:342 +msgid "Caution" +msgstr "" + +#: sphinx/locale/__init__.py:343 +msgid "Danger" +msgstr "" + +#: sphinx/locale/__init__.py:344 +msgid "Error" +msgstr "" + +#: sphinx/locale/__init__.py:345 +msgid "Hint" +msgstr "" + +#: sphinx/locale/__init__.py:346 +msgid "Important" +msgstr "" + +#: sphinx/locale/__init__.py:347 +msgid "Note" +msgstr "" + +#: sphinx/locale/__init__.py:348 +msgid "See also" +msgstr "" + +#: sphinx/locale/__init__.py:349 +msgid "Tip" +msgstr "" + +#: sphinx/locale/__init__.py:350 +msgid "Warning" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +msgid "continued from previous page" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:28 +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:81 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 "© Copyright %(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 Sphinx " +"%(sphinx_version)s." +msgstr "" + +#: sphinx/themes/basic/opensearch.xml:4 +#, python-format +msgid "Search %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/relations.html:11 +msgid "Previous topic" +msgstr "" + +#: sphinx/themes/basic/relations.html:13 +msgid "previous chapter" +msgstr "" + +#: sphinx/themes/basic/relations.html:16 +msgid "Next topic" +msgstr "" + +#: sphinx/themes/basic/relations.html:18 +msgid "next chapter" +msgstr "" + +#: sphinx/themes/basic/search.html: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:290 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js:292 +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:195 sphinx/writers/html.py:403 +#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 +#: sphinx/writers/html5.py:354 +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 +msgid "Permalink to this definition" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js:234 +msgid "Hide Search Matches" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:121 +msgid "Searching" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:126 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:294 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:347 +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:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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 "" + +#: sphinx/transforms/post_transforms/__init__.py:175 +#, python-format +msgid "%r reference target not found: %%(target)s" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 +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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 image" +msgstr "" + +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +msgid "Permalink to this toctree" +msgstr "" + +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 +msgid "Release" +msgstr "" + +#: sphinx/writers/latex.py:531 +#, 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 +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 +msgid "document title is not a single Text node" +msgstr "" + +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#, python-format +msgid "[image: %s]" +msgstr "" + +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +msgid "[image]" +msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 98843fbf8..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", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Criado usando Sphinx %(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": "Tabela de Conte\u00fado", "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 +Documentation.addTranslations({"locale": "pt_BR", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Criado usando Sphinx %(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 ccee05226..776d095c1 100644 Binary files a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index f38ee051c..436179997 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -11,107 +11,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\n" -"Last-Translator: Takeshi KOMIYA \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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -119,7 +145,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -127,169 +153,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" -msgstr "Seção %s" +msgid "doing serial %s" +msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Fig. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tabela %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Listagem %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Seção %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Fig. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tabela %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Listagem %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -321,6 +467,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -342,368 +493,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Internos" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Nível do Módulo" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "índice" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "próximo" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "anterior" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "documentação %s %s" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (em " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "Opção Estrutura" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "Opções básicas do Projeto" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "Opções Extensão" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "Legenda inválida: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Autor da seção: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Autor do módulo: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Autor do código: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (função C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (membro C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (macro C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (tipo C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (variável C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "função" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variável" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Novo na versão %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Alterado na versão %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Obsoleto desde a versão %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Parâmetros do Modelo" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Lança" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (tipo C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (conceito C++)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (membro C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (função C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (classe C++)" -#: sphinx/domains/cpp.py:5678 +#: 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)" -#: sphinx/domains/cpp.py:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++ enumerador)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "conceito" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumerador" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "módulo" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, 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 +msgid "keyword" +msgstr "palavra-chave" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operador" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objeto" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "exceção" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "comando" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "função interna" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (método %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (método estático %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (método de classe %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributo %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "exceção" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsoleto)" @@ -725,58 +2238,152 @@ msgstr "diretiva" msgid "role" msgstr "papel" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "váriavel de ambiente; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%s opção de linha de comando; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "Glossário de Termos" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "termo gramatical" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "marca referencial" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "váriavel de ambiente" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "opção do programa" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Índice do Módulo" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Busca" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -787,46 +2394,244 @@ msgstr "veja %s" msgid "see also %s" msgstr "veja também %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Símbolos" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -836,7 +2641,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -846,26 +2651,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[gráfico: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[gráfico]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -875,171 +2686,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "Permalink para essa equação" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[código fonte]" -#: sphinx/ext/mathbase.py:124 -#, 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/ext/todo.py:67 msgid "Todo" msgstr "Por fazer" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(A <> está localizada na %s, linha %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "entrada original" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[documentos]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Código do módulo" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Código fonte para %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Visão geral: código do módulo" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Todos os módulos onde este código está disponível

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "Base: %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "apelido de :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "Chaves e Argumentos " -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "Exemplo" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "Exemplos" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Atenção" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Cuidado" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Perigo" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Erro" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Dica" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Ver também" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Dica" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Aviso" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Novo na versão %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Alterado na versão %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Obsoleto desde a versão %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "palavra-chave" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operador" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objeto" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "comando" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "função interna" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "continuação da página anterior" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Continuação na próxima 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:38 -msgid "Table Of Contents" -msgstr "Tabela de Conteúdo" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Buscar" @@ -1120,35 +3074,35 @@ msgstr "pode ser enorme" msgid "Navigation" msgstr "Navegação" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Pesquisar dentro de %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Sobre esses documentos" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Última atualização em %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1176,13 +3130,13 @@ msgstr "Próximo tópico" msgid "next chapter" msgstr "próximo capítulo" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1190,20 +3144,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "buscar" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Resultados da Busca" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1245,36 +3199,36 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Link permanente para este título" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Link permanente para esta definição" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Esconder Resultados da Busca" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Buscando" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Preparando a busca..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", em " @@ -1291,68 +3245,223 @@ msgstr "Recolher painel lateral" msgid "Contents" msgstr "Conteúdos" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Link Permanente para essa tabela" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Link Permanente para esse código" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Link Permanente para essa imagem" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Link permanente para esse \"toctree\"" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Release" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "Chave configuração desconhecida: latex_elements[%r] será ignorado." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[imagem: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[imagem]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 5b8458604..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Criado utilizando Sphinx %(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": "Tabela de Conte\u00fados", "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 +Documentation.addTranslations({"locale": "pt_PT", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Criado utilizando Sphinx %(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 2ff84db4e..3d81c66a3 100644 Binary files a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 8f7a17474..dbc2cc2b8 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,107 +9,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -117,7 +143,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -125,169 +151,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -319,6 +465,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -340,368 +491,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Internos" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Módulos" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "índice" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "próximo" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "anterior" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "Documentação %s %s" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (em " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Autor da secção: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Autor do módulo: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Autor do código: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Retorno" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (função C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (membro C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (macro C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (tipo C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (variável C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "função" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variável" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Novo na versão %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Alterado na versão %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Obsoleto desde a versão %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Gera" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (tipo C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (membro C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (função C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (classe C++)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Parâmetros" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "dados" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "módulo" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "palavra-chave" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operador" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objecto" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "excepção" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "comando" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "função interna" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (método %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (método estático %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (método de classe %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributo %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Índice de Módulos do Python" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "excepção" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsoleto)" @@ -723,58 +2236,152 @@ msgstr "directiva" msgid "role" msgstr "papel" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "variável de ambiente; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sopção de linha de comando; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "Termo de glossário" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "token de gramática" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "rótulo de referência" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "variável de ambiente" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "opção de programa" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Pesquisa" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -785,46 +2392,244 @@ msgstr "ver %s" msgid "see also %s" msgstr "ver também %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Símbolos" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -834,7 +2639,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -844,26 +2649,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[gráfico: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[gráfico]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -873,171 +2684,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[código fonte]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Por fazer" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "entrada original" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[documentos]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Código do módulo" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Código fonte de %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Visão geral: código do módulo" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Todos os módulos onde este código está disponível

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "pseudónimo de :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Atenção" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Cuidado" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Perigo" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Erro" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Dica" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Veja também" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Dica" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Aviso" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Novo na versão %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Alterado na versão %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Obsoleto desde a versão %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "palavra-chave" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operador" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objecto" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "comando" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "função interna" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "continuação da página anterior" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Continuação na próxima 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:38 -msgid "Table Of Contents" -msgstr "Tabela de Conteúdos" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Pesquisar" @@ -1118,35 +3072,35 @@ msgstr "pode ser enorme" msgid "Navigation" msgstr "Navegação" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Pesquisar dentro de %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Sobre estes documentos" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Última actualização em %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1174,13 +3128,13 @@ msgstr "Próximo tópico" msgid "next chapter" msgstr "próximo capítulo" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1188,20 +3142,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "pesquisar" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Resultados da Pesquisa" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1243,36 +3197,36 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Link permanente para este título" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Link permanente para esta definição" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Esconder Resultados da Pesquisa" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "A Pesquisar" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "A preparar a pesquisa..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", em" @@ -1289,68 +3243,223 @@ msgstr "Recolher painel lateral" msgid "Contents" msgstr "Conteúdo" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +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:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "[imagem: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[imagem]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 5a5571f7e..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Generat cu Sphinx %(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": "Cuprins", "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 +Documentation.addTranslations({"locale": "ro", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Generat cu Sphinx %(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 4aac63eaa..151bd216c 100644 Binary files a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index aa2a29b3e..3b465a51c 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,107 +9,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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 "Proiectul necesită minim Sphinx v%s și de aceea nu poate fi construit cu această versiune." -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "încă nu a fost creeat" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "eșuat: %s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "a reușit" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "a fost finalizat cu probleme" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -117,7 +143,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -125,169 +151,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Fig. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tabelul %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Cod %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Fig. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tabelul %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Cod %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -319,6 +465,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -340,368 +491,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Integrate" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Nivelul modul" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Index General" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "index" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "următor" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "precedent" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s documentație" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "(în" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Autorul secțiunii:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Autorul modulului:" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Autorul codului:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autor:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametrii" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Întoarce" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Tipul întors" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (funcție C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (membru C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (macro C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (tip C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (variabilă C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funcție" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "membru" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variabilă" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Nou în versiunea %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Schimbat în versiunea %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Învechit începând cu versiunea %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Generează" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (tip C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (membru C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (funcție C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (clasă C++)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (enumerator C++)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "clasă" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enumerator" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funcție integrată)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (clasă)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabilă globală sau constantă)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumente" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metodă" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "cuvânt cheie" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operator" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "obiect" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "excepție" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "declarație" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "funcție integrată" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variabile" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Generează" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (în modulul %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabilă integrată)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (în modulul %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (clasă integrată)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (clasa în %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metoda %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (metoda statică %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metoda statică %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (metoda clasei %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metoda clasei %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributul %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Indexul de Module Python" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Învechit" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "excepție" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "metoda clasei" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "metodă statică" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "(învechit)" @@ -723,58 +2236,152 @@ msgstr "directivă" msgid "role" msgstr "rol" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "variabilă de mediu; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sopțiune în linia de comandă; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "termen de glosar" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "element de gramatică" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "etichetă de referință" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "variabilă de mediu" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "opțiune a programului" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Index al modulelor" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pagină de Căutare" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -785,46 +2392,244 @@ msgstr "vezi %s" msgid "see also %s" msgstr "vezi și %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Simboluri" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -834,7 +2639,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -844,26 +2649,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[grafic: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[grafic]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -873,171 +2684,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(în %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[sursă]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "De făcut" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "înregistrarea inițială" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[documentație]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Codul modulului" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Codul sursă pentru %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Prezentare generală: codul modulului" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Toate modulele pentru care este disponibil codul sursă

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias pentru :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Atenție" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Avertisment" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Pericol" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Eroare" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Sugestie" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Notă" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Vezi și" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Sfat" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Atenționare" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Nou în versiunea %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Schimbat în versiunea %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Învechit începând cu versiunea %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "cuvânt cheie" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operator" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "obiect" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "declarație" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "funcție integrată" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "continuare din pagina precedentă" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Se continuă pe pagina următoare" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Cuprins" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Căutare" @@ -1118,35 +3072,35 @@ msgstr "poate fi extrem de mare" msgid "Navigation" msgstr "Navigare" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Caută în %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Despre aceste documente" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Drepturi de autor" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Ultima actualizare la %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1174,13 +3128,13 @@ msgstr "Subiectul următor" msgid "next chapter" msgstr "capitolul următor" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1188,20 +3142,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "căutare" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Rezultatele Căutării" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1243,36 +3197,36 @@ msgstr "Schimbări în API C" msgid "Other changes" msgstr "Alte schimbări" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Link permanent la acest titlu" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Link permanent la această definiție" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Ascunde Rezultatele Căutării" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Căutare" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Se pregătește căutarea..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", în" @@ -1289,68 +3243,223 @@ msgstr "Ascundere bară laterală" msgid "Contents" msgstr "Cuprins" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Link permanent la acest tabel" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Link permanent la acest cod" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Link permanent la această imagine" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Link permanent la acest cuprins" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Versiune" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Note de subsol" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "[figura: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[figură]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 41853c805..6f71d110e 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", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "\u0421\u043e\u0437\u0434\u0430\u043d\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Sphinx %(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 +Documentation.addTranslations({"locale": "ru", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "\u0421\u043e\u0437\u0434\u0430\u043d\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Sphinx %(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)"}); \ 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 b5d315632..35b2d911c 100644 Binary files a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index fb79f72b7..be3776227 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -12,107 +12,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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 не ниже v%s и не может быть построен текущей версией." -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "готово" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "загрузка настроек" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "пока не создано" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "ошибка: %s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "Сборщик не указан, по умолчанию используется html" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "с ошибками" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "сборка завершена %s." -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "Ключ конфигурации %r уже существует" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "Значением ключа %r должна быть пара фунций (visit, depart)" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -120,7 +146,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -128,169 +154,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" -msgstr "Раздел %s" +msgid "doing serial %s" +msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Рис. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Таблица %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Список %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "Отсутствует ключ конфигурации %s" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "Ключ конфигурации %r уже существует" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Раздел %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Рис. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Таблица %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Список %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "Событие %r уже существует" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "Неизвестное событие: %s" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" -msgstr "Отсутствует аттрибут \"name\" у класса сборщика %s." - -#: sphinx/registry.py:75 -#, python-format -msgid "Builder %r already exists (in module %s)" -msgstr "Сборщик %r уже существует (в модуле %s)." - -#: sphinx/registry.py:89 -#, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "Сборщик %s не зарегистрирован явно или через ресурсы пакетов." - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "Сборщик %s не зарегистрирован." - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 +#: sphinx/highlighting.py:165 #, python-format -msgid "domain %s not yet registered" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." +msgstr "" + +#: sphinx/io.py:209 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" +msgstr "Отсутствует аттрибут \"name\" у класса сборщика %s." + +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "Сборщик %r уже существует (в модуле %s)." + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "Сборщик %s не зарегистрирован явно или через ресурсы пакетов." + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "Сборщик %s не зарегистрирован." + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "Изначальное исключение:\n" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "Не могу загрузить модуль расширения %s" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "расширение %r не определяет функцию setup(); это действительно модуль расширения Sphinx?" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -322,6 +468,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -343,368 +494,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Встроенные функции" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Модуль" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Алфавитный указатель" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "указатель" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "вперёд" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "назад" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "Документация %s %s" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (в " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "Некорректная подпись: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Автор раздела: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Автор кода:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Автор: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Параметры" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Результат" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Тип результата" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (функция C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (поле C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (макроподстановка C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (тип C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (переменная C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "функция" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "поле" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "переменная" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Добавлено в версии %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Изменено в версии %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Не рекомендуется, начиная с версии %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Параметры шаблона" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Бросает исключение" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (тип C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (концепт C++)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (поле C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (функция C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (класс C++)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (функция-перечислитель C++)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "класс" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "концепт" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "перечисляемый тип" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "перечислитель" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (встроенная функция)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (метод %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (класс)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (глобальная переменная или константа)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Аргументы" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "метод" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "данные" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "модуль" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "повторяющаяся метка уравнения %s, также используется в %s" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "ключевое слово" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "оператор" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "объект" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "исключение" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "команда" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "базовая функция" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Переменные" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Исключение" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модуле %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (встроенная переменная)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (в модуле %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (встроенный класс)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (класс в %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (метод %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (статический метод %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статический метод %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (метод класса %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метод класса %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (атрибут %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Содержание модулей Python" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Не рекомендуется" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "исключение" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "метод класса" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "статический метод" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "(использование не рекомендуется)" @@ -726,58 +2239,152 @@ msgstr "директива" msgid "role" msgstr "роль" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "переменная окружения; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "Опция командной строки %s; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "элемент словаря" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "токен грамматики" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "текст ссылки" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "переменная окружения" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "опция программы" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Состав модуля" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Поиск" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -788,46 +2395,244 @@ msgstr "см. %s" msgid "see also %s" msgstr "также см. %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Символы" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -837,7 +2642,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -847,26 +2652,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[иллюстрация: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[иллюстрация]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -876,171 +2687,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "Ссылка на это уравнение" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(в %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[исходный код]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "повторяющаяся метка уравнения %s, также используется в %s" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "План" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<<исходная запись>>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<<Исходная запись>> находится в %s, строка %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "исходный элемент" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[документация]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Код модуля" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Исходный код %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Обзор: исходный код модуля" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Все модули, в которых есть код

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr " Базовые классы: %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "псевдоним класса :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "Именованные аргументы" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Внимание" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Осторожно" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Опасно" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Ошибка" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Подсказка" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Важно" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Примечание" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "См.также" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Совет" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Предупреждение" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Добавлено в версии %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Изменено в версии %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Не рекомендуется, начиная с версии %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "ключевое слово" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "оператор" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "объект" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "команда" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "базовая функция" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "продолжение с предыдущей страницы" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "Оглавление" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Поиск" @@ -1121,35 +3075,35 @@ msgstr "может быть очень большим" msgid "Navigation" msgstr "Навигация" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Поиск в документе «%(docstitle)s»" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Об этих документах" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Авторские права" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Обновлено: %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1177,13 +3131,13 @@ msgstr "Следующий раздел" msgid "next chapter" msgstr "следующая глава" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Для работы поиска включите JavaScript в браузере." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1191,20 +3145,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Здесь можно делать поиск по всем разделам этой документации. Введите ключевые слова в текстовое поле и нажмите кнопку «искать». Внимание: будут найдены только те страницы, в которых есть все указанные слова. Страницы, где есть только часть этих слов, отобраны не будут." -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "искать" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Результаты поиска" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1246,36 +3200,36 @@ msgstr "Изменения в API C" msgid "Other changes" msgstr "Другие изменения" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Ссылка на этот заголовок" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Ссылка на это определение" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Снять выделение" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Идёт поиск" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Подготовка поиска…" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Поиск завершён, найдено %s страниц, удовлетворяющих запросу." -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", в" @@ -1292,68 +3246,223 @@ msgstr "Свернуть боковую панель" msgid "Contents" msgstr "Содержание" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Постоянная ссылка на код" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Постоянная ссылка на рисунок" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Постоянная ссылка на оглавление" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Выпуск" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "Неизвестный ключ конфигурации: latex_elements[%r] игнорируется." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Сноски" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[рисунок: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[рисунок]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 c754a1180..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": "", "© Copyright %(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 Sphinx %(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": "\u0db4\u0da7\u0dd4\u0db1", "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 +Documentation.addTranslations({"locale": "si", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(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 818c2db59..c2a7b0076 100644 Binary files a/sphinx/locale/si/LC_MESSAGES/sphinx.mo and b/sphinx/locale/si/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index e8d1afd85..3f6dbfaa5 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "ඊළඟ" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "පෙර" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s ලේඛණය" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "කේත ලේඛක:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "ලේඛක:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "පරාමිතීන්" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "ක්‍රියාව" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "සාමාජික" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "මැක්‍රෝ" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "වර්ගය" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "විචල්‍යය" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "%s වෙළුමේ අලුත්" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "%s වෙළුමේ වෙනස් කල" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "දත්ත" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "වස්තුව" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "විචල්‍ය" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -722,58 +2235,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "සෙවුම් පිටුව" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "%s බලන්න" msgid "see also %s" msgstr "%s ද බලන්න" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "සංකේත" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(%s හි%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[source]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "කිරීමට තිබෙන" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "දෝෂය" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "හැඟවීම" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "සටහන" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "මෙයද බලන්න" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "අනතුරු ඇඟවීම" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "%s වෙළුමේ අලුත්" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "%s වෙළුමේ වෙනස් කල" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "වස්තුව" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "පටුන" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "සොයන්න" @@ -1117,35 +3071,35 @@ msgstr "විශාල විය හැක" msgid "Navigation" msgstr "ගමන් කිරීම" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "මෙම ලේඛණ ගැන" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "ඊළඟ මාතෘකාව" msgid "next chapter" msgstr "ඊළඟ පරිච්ඡේදය" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1187,20 +3141,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "සොයන්න" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "සෙවුම් ප්‍රතිඵල" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "C API වෙනස්කම්" msgid "Other changes" msgstr "වෙනත් වෙනස්කම්" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "සොයමින්..." -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "සෙවුම සූදානම් කරමින්...." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1288,68 +3242,223 @@ msgstr "" msgid "Contents" msgstr "අන්තර්ගතය" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "නිකුත් කිරීම" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[image]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 0ca4ad44c..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", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Vytvoren\u00e9 pomocou Sphinx %(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": "Obsah", "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>=2 && n<=4) ? 1 : 2"}); \ No newline at end of file +Documentation.addTranslations({"locale": "sk", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(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 Sphinx %(sphinx_version)s.": "Vytvoren\u00e9 pomocou Sphinx %(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 c18ffc014..6a44b68c8 100644 Binary files a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 098e6cea3..db64f0cc5 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,107 +10,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\n" -"Last-Translator: Takeshi KOMIYA \n" +"POT-Creation-Date: 2018-08-21 01:14+0900\n" +"PO-Revision-Date: 2018-09-09 14:36+0000\n" +"Last-Translator: Slavko \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: sk\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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:176 +#: sphinx/application.py:152 +#, 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 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "Nemožno nájsť zdrojový priečinok (%s)" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "Zdrojový a cieľový priečinok nemôžu byť rovnaké" + +#: sphinx/application.py:191 +#, python-format +msgid "Running Sphinx v%s" +msgstr "Spúšťanie 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 "Tento projekt vyžaduje aspoň Sphinx v%s a preto s touto verziou nemôže byť zostavený." -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "vytváranie výstupného priečinka…" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nenájdená, ignorované." -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "hotovo" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +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:289 -msgid "not yet created" -msgstr "zatiaľ nevytvorené" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "zlyhalo: %s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "Nebol zvolený builder, bude použitý predvolený: html" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "úspešné" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "dokončené sproblémami" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "zostavenie %s, %s upozornenie." -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "zostavenie %s." -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "Konfiguračná hodnota %r už existuje" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, 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é" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "Hodnota kľúča %r musí byť n-tica funkcií (visit, depart)" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, 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á" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "počas nastavovania rozšírenia %s: rola %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -118,177 +144,297 @@ 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:696 +#: sphinx/application.py:1274 #, 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 "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 +#, python-format +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:133 -#, python-format -msgid "Section %s" -msgstr "Sekcia %s" - -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Obr. %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tabuľka %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Výpis %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, 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:258 +#: sphinx/config.py:221 #, 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:263 +#: sphinx/config.py:226 #, 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:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "neznáma konfiguračná hodnota %r v prepísaní, ignorované" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "Neznáma konfiguračná hodnota: %s" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "Konfiguračná hodnota %r už existuje" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "V konfiguračnom súbore je syntaktická chyba: %s" + +#: 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 +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 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "V konfiguračnom súbore je programová chyba:\n\n%s" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "Sekcia %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Obr. %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tabuľka %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Výpis %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "Udalosť %r už existuje" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "Neznáme meno udalosti %s" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." -msgstr "Rozšírenie %s vyžadované nastavením needs_extensions, ale nie je načítané." +msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:165 +#, 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" +msgstr "" + +#: sphinx/registry.py:132 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Trieda builder %s nemá atribút „name”" -#: sphinx/registry.py:75 +#: sphinx/registry.py:134 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r už existuje (v module %s)" -#: sphinx/registry.py:89 +#: sphinx/registry.py:148 #, 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:97 +#: sphinx/registry.py:156 #, python-format msgid "Builder name %s not registered" msgstr "Builder s menom %s nie je registrovaný" -#: sphinx/registry.py:105 +#: sphinx/registry.py:164 #, python-format msgid "domain %s already registered" msgstr "doména %s už je zaregistrovaná" -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 #, python-format msgid "domain %s not yet registered" msgstr "doména %s ešte nie je zaregistrovaná" -#: sphinx/registry.py:132 +#: sphinx/registry.py:202 #, python-format -msgid "new domain not a subclass of registered %s domain" -msgstr "nová doména nie je podtriedou registrovanej domény %s" +msgid "The %r directive is already registered to %d domain" +msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser pre %r už je registrovaný" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "Analyzátor pre %s nie je registrovaný" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "source_input pre %r už je registrované" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "source_input pre %s nie je regitrované" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." -msgstr "Zmena prekladača pre zostavovač %s." +msgid "Translatoro for %r already exists" +msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, 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:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "Pôvodná výnimka:\n" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "Nemožno importovať rozšírenie %s" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, 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:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -320,6 +466,11 @@ msgstr "nebola nájdená téma s menom %r, dedená v %r" 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 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -341,368 +492,1730 @@ msgstr "sphinx_rtd_theme viac nie je nutnou závislosťou od verzie 1.4.0. Pros msgid "no theme named %r found (missing theme.conf?)" msgstr "nebola nájdená téma smenom %r (chýbajúci theme.conf?)" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "zostavenie [mo]: " + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "zápis výstupu…" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "všetky z %d súborov po" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "zostavenie [%s]" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Zabudované funkcie" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Úroveň modulu" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d. %b %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Všeobecný index" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "index" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "ďalší" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "predošlý" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "Dokumentácia %s %s" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "(v" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "Neplatný popis: %s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, 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:214 +#: sphinx/directives/code.py:223 #, 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:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, 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:280 +#: sphinx/directives/code.py:289 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:285 +#: sphinx/directives/code.py:294 #, 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:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Autor sekcie:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Autor modulu:" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Autor kódu:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Autor:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Vracia" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Návratový typ" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (funkcia C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (člen C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (makro C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (typ C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (premenná C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funkcia" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "premenná" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Nové vo verzii %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Zmenené vo verzii %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Zastarané od verzie %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Parametre šablóny" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Vyvoláva" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (typ C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (koncept C++)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (člen C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (funkcia C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (trieda C++)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (enumerátor C++)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "trieda" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (zabudovaná funkcia)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (metóda %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (trieda)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, 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:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribút %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metóda" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "dáta" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atribút" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, 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 +msgid "keyword" +msgstr "kľúč. slovo" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operátor" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objekt" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "výnimka" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "príkaz" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "zabudovaná funkcia" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Premenné" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Vyzdvihuje" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v module %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (zabudovaná premenná)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (v module %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (zabudovaná trieda)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (trieda v %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metóda %s.%s)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statická metóda %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metóda %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (metóda triedy %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metóda triedy %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribút %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Index modulov Python" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Zastarané" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "výnimka" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "metóda triedy" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statická metóda" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (zastarané)" @@ -724,58 +2237,152 @@ msgstr "direktíva" msgid "role" msgstr "rola" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "premenná prostredia; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%s voľba príkazového riadka; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "termín glosára" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "jazykový token" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "menovka odkazu" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "premenná prostredia" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "voľba programu" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Index modulov" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Stránka hľadania" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -786,46 +2393,244 @@ msgstr "viď %s" msgid "see also %s" msgstr "viď aj %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Symboly" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "chýbajúce „+” alebo „-” vo voľbe „%s”." -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' nie je platná voľba." -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "„%s” nie je platná voľba pyversion" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 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:147 +#: sphinx/ext/graphviz.py:149 #, 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:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorovaná direktíva „graphviz” bez obsahu." -#: sphinx/ext/graphviz.py:244 +#: sphinx/ext/graphviz.py:255 #, 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -835,7 +2640,7 @@ msgid "" "%s" msgstr "dot skončil chybou:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -845,26 +2650,32 @@ msgid "" "%s" msgstr "dot nevytvoril výstupný súbor:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, 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:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, 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:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -874,171 +2685,314 @@ msgid "" "%s" msgstr "convert skončil chybou:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "Trvalý odkaz na tento vzorec" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[zdroj]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "duplicitná menovka vzorca %s, ďalší výskyt v %s" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "ToDo" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> je umiestnená v %s, riadok %d.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "pôvodná položka" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[dokumenty]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Kód modulu" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Zdrojový kód %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Prehľad: kód modulu" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Všetky moduly, pre ktoré je dostupný kód

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "Základ: %s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias pre :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "Argumenty kľúčových slov" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Výstraha" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Upozornenie" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Nebezpečné" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Chyba" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Rada" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Dôležité" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Poznámka" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Viď aj" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Varovanie" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Nové vo verzii %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Zmenené vo verzii %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Zastarané od verzie %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "kľúč. slovo" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operátor" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objekt" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "príkaz" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "zabudovaná funkcia" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "pokračovanie z predošlej strany" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Pokračovanie na ďalšej strane" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Obsah" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Hľadať" @@ -1119,35 +3073,35 @@ msgstr "môže byť rozsiahle" msgid "Navigation" msgstr "Navigácia" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Hľadať v %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "O dokumentácii" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Autorské právo" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Naposledy aktualizované %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1175,13 +3129,13 @@ msgstr "Ďalšia téma" msgid "next chapter" msgstr "ďalšia kapitola" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1189,20 +3143,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "hľadať" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Výsledky hľadania" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1244,36 +3198,36 @@ msgstr "Zmeny API C" msgid "Other changes" msgstr "Ostatné zmeny" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Trvalý odkaz na tento nadpis" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Trvalý odkaz na túto definíciu" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Skryť výsledky hľadania" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Hľadanie" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Príprava hľadania..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", v " @@ -1290,68 +3244,223 @@ msgstr "Zbaliť bočný panel" msgid "Contents" msgstr "Obsah" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:142 #, 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, 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:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "Cieľ odkazu %r nebol nájdený: %%(target)s" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "pri pridávaní tried direktív nemožno zadať dodatočné argumenty" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Trvalý odkaz na túto tabuľku" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Trvalý odkaz na tento kód" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Trvalý odkaz na tento obrázok" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Trvalý odkaz na tento obsah" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Vydanie" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +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:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "Neznámy konfiguračný kľúč: latex_elements[%r] je ignorovaný." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Poznámky pod čiarou" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[obrázok: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[obrázok]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 38f89c332..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Narejeno s Sphinx %(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": "Seznam Vsebine", "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 +Documentation.addTranslations({"locale": "sl", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Narejeno s Sphinx %(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 fd835ce6c..fd0ea7752 100644 Binary files a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index ca141ba2a..d4d6e9da7 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,107 +7,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -115,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -123,169 +149,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -317,6 +463,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -338,368 +489,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Vgrajeni deli" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Nivo modula" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Splošni abecedni seznam" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "abecedni seznam" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "naprej" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "nazaj" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (v " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Avtor sekcije: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Avtor modula: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Avtor: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Vrne" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Vrne tip" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C funkcija)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C član)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C makro)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C tip)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C spremenljivka)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "član" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Novo v verziji %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Spremenjeno v verziji %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Zastarelo od verzije %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tip)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ član)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funkcija)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ razred)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "razred" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (vgrajene funkcije)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (razred)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "ključna beseda" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operator" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objekt" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "izjema" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "izjava" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "vgrajene funkcije" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Sproži izjemo" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (vgrajene spremenljivke)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (vgrajen razred)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (razred v %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statična metoda)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribut)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Zastarelo" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "izjema" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (zastarelo)" @@ -721,58 +2234,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "okoljska spremenljivka; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%scommand line parameter; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "okoljska spremenljivka" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Seznam modulov" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Iskalnik" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -783,46 +2390,244 @@ msgstr "" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -832,7 +2637,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -842,26 +2647,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -871,171 +2682,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "vzdevek za :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Pozor" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Previdno" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Nevarno" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Napaka" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Nasvet" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Pomembno" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Opomba" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Poglej Tudi" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Nasvet" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Opozorilo" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Novo v verziji %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Spremenjeno v verziji %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Zastarelo od verzije %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "ključna beseda" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operator" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objekt" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "izjava" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "vgrajene funkcije" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "nadaljevanje iz prejšnje strani" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Nadaljevanje na naslednji strani" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Seznam Vsebine" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Išči" @@ -1116,35 +3070,35 @@ msgstr "lahko je veliko" msgid "Navigation" msgstr "Navigacija" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Išči med %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "O dokumentih" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Vse pravice pridržane" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Zadnjič posodobljeno %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1172,13 +3126,13 @@ msgstr "Naslednja tema" msgid "next chapter" msgstr "naslednje poglavje" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Za pravilno delovanje Iskanja morete vklopiti\n JavaScript." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1186,20 +3140,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "išči" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Rezultati Iskanja" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1241,36 +3195,36 @@ msgstr "C API spremembe" msgid "Other changes" msgstr "Ostale spremembe" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Povezava na naslov" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Povezava na to definicijo" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Skrij resultate iskanja" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1287,68 +3241,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Izdaja" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Opombe" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[slika]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 583ec1ee4..755d53455 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": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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 +Documentation.addTranslations({"locale": "sr", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 718b8db0e..dfc3f8be8 100644 Binary files a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 4e396caf8..4b7109c8a 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -7,107 +7,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -115,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -123,169 +149,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -317,6 +463,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -338,368 +489,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -721,58 +2234,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -783,46 +2390,244 @@ msgstr "" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -832,7 +2637,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -842,26 +2647,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -871,171 +2682,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "" @@ -1116,35 +3070,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1172,13 +3126,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1186,20 +3140,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1241,36 +3195,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1287,68 +3241,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 583ec1ee4..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": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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 +Documentation.addTranslations({"locale": "sr", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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 13557068c..0168c0c64 100644 Binary files a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index d20af3c04..8d439dc07 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,107 +7,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr%40latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "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:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -115,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -123,169 +149,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -317,6 +463,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -338,368 +489,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -721,58 +2234,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -783,46 +2390,244 @@ msgstr "" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -832,7 +2637,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -842,26 +2647,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -871,171 +2682,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "" @@ -1116,35 +3070,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1172,13 +3126,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1186,20 +3140,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1241,36 +3195,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1287,68 +3241,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 597c6869f..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Skapad med Sphinx %(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": "Inneh\u00e5llsf\u00f6rteckning", "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 +Documentation.addTranslations({"locale": "sv", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Skapad med Sphinx %(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 8452dbc24..68671ef17 100644 Binary files a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 26916414e..5755a5a40 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,107 +7,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -115,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -123,169 +149,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -317,6 +463,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -338,368 +489,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Inbyggda" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Modulnivå" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Huvudindex" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "index" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "nästa" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "föregående" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "(i " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Sektionsförfattare" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Modulförfattare" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Källkodsförfattare" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Upphovsman:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametrar" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Returnerar" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Returtyp" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C-funktion)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C-medlem)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C-makro)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C-typ)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "variabel" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Nyheter i version %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Förändrat i version %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Ersatt sedan version %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Kastar" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++-typ)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++-medlem)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++-funktion)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++-klass)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (klass)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argument" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metod" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "nyckelord" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "operator" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "objekt" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "undantag" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "uttryck" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "inbyggda funktioner" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Väcker" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metod)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statisk metod)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klassmetod)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribut)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "undantag" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -721,58 +2234,152 @@ msgstr "direktiv" msgid "role" msgstr "roll" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "miljövariabel; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%skommandorad växel; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "ordlista" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "grammatisk token" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "referensetikett" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "miljövariabel" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "programväxel" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Söksida" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -783,46 +2390,244 @@ msgstr "se %s" msgid "see also %s" msgstr "se även %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -832,7 +2637,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -842,26 +2647,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -871,171 +2682,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[source]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Att göra" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "ursprungsvärde" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Modulkällkod" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

Källkod för %s

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Översikt: modulkällkod" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Alla moduler där källkod finns

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "alias för :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Uppmärksamma" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Varning" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Risk" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Fel" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Råd" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Viktigt" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Observera" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Se även" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Tips" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Varning" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Nyheter i version %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Förändrat i version %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Ersatt sedan version %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "nyckelord" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "operator" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "objekt" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "uttryck" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "inbyggda funktioner" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "fortsättning från föregående sida" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Fortsätter på nästa sida" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "Innehållsförteckning" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Sök" @@ -1116,35 +3070,35 @@ msgstr "kan bli stort" msgid "Navigation" msgstr "Navigation" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Sök bland %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Om dessa dokument" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Senast uppdaterad %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1172,13 +3126,13 @@ msgstr "Nästa titel" msgid "next chapter" msgstr "Nästa kapitel" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Var god aktivera JavaScript för sökfunktionalitet." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1186,20 +3140,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "sök" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Sökresultat" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1241,36 +3195,36 @@ msgstr "Förändringar i C-API" msgid "Other changes" msgstr "Övriga förändringar" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Permalink till denna rubrik" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Permalink till denna definition" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Dölj Sökresultat" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1287,68 +3241,223 @@ msgstr "Dölj sidolist" msgid "Contents" msgstr "Innehåll" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +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:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[image]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 e37c8ba73..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": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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 +Documentation.addTranslations({"locale": "ta", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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 be1cccb84..51ff62ce5 100644 Binary files a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index aa7dcee70..8c1501cec 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -7,107 +7,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -115,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -123,169 +149,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -317,6 +463,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -338,368 +489,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -721,58 +2234,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -783,46 +2390,244 @@ msgstr "" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -832,7 +2637,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -842,26 +2647,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -871,171 +2682,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "" @@ -1116,35 +3070,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1172,13 +3126,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1186,20 +3140,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1241,36 +3195,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1287,68 +3241,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 9859b2046..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sphinx %(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": "\u0130\u00e7indekiler Tablosu", "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 +Documentation.addTranslations({"locale": "tr", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "Sphinx %(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 97f0a1aed..277edb0ee 100644 Binary files a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 020ae3639..1678fe0f4 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -9,107 +9,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -117,7 +143,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -125,169 +151,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "Şekil %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "Tablo %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "Liste %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "Şekil %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "Tablo %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "Liste %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -319,6 +465,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -340,368 +491,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Gömülü Öğeler" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Modül düzeyi" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Genel Dizin" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "dizin" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "sonraki" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "önceki" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s belgelendirme çalışması" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (şurada: " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Bölümün yazarı: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Modülün yazarı: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Kodun yazarı: " -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Yazarı: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Parametreler" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Dönüş değeri:" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Dönüş tipi" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C fonksiyonu)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C öğesi)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C makrosu)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C tipi)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C değişkeni)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "fonksiyonu" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "öğesi" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "makrosu" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "tipi" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "değişkeni" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "%s sürümüyle geldi" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "%s sürümünde değişti" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "%s sürümünden beri önerilmiyor" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "Şablon Parametreleri" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Şunu verir: " -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tipi)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ öğesi)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ fonksiyonu)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ sınıfı)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++ numaralandırıcısı)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "sınıfı" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "numaralandırıcı" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (gömülü fonksiyon)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodu)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (sınıfı)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, 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:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s niteliği)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Argümanlar" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (modül)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "metodu" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "verisi" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "niteliği" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "modülü" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "anahtar sözcük" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "işleç" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "nesne" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "istisnası" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "deyim" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "gömülü fonksiyon" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Değişkenler" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Şunu tetikler:" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modülü içinde)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (gömülü değişken)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modülü içinde)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (gömülü sınıf)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (%s içinde bir sınıf)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodu)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statik metodu)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statik metodu)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s sınıf metodu)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s sınıf metodu)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s niteliği)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python Modül Dizini" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "modüller" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Önerilmiyor" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "istisnası" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "sınıf metodu" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "statik metodu" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (önerilmiyor)" @@ -723,58 +2236,152 @@ msgstr "yönergesi" msgid "role" msgstr "rolü" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "çevre değişkeni; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%skomut satırı seçeneği; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "sözlük terimi" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "dilbilgisi girdisi" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "referans etiketi" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "çevre değişkeni" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "program seçeneği" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Modül Dizini" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Arama Sayfası" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -785,46 +2392,244 @@ msgstr "bkz. %s" msgid "see also %s" msgstr "ayrıca bkz. %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Simgeler" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -834,7 +2639,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -844,26 +2649,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[çizim: %s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[çizim]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -873,171 +2684,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s içinde)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[kaynak]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Yapılacaklar" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<<özgün girdi>>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<<özgün girdi>> %s içinde, %d. satırda.)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "özgün girdi" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[belgeler]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "Modül kodu" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

%s öğesinin kaynak kodu

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "Genel bakış: modül kodu" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

Kodları mevcut bütün modüller

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "şunun takma adı: :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Dikkat" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Uyarı" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Tehlike" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Hata" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "İpucu" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Önemli" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Not" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Ayrıca bkz." -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Tüyo" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Uyarı" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "%s sürümüyle geldi" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "%s sürümünde değişti" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "%s sürümünden beri önerilmiyor" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "anahtar sözcük" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "işleç" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "nesne" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "deyim" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "gömülü fonksiyon" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "önceki sayfadan devam" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 msgid "Continued on next page" msgstr "Devamı sonraki sayfada" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:38 -msgid "Table Of Contents" -msgstr "İçindekiler Tablosu" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Ara" @@ -1118,35 +3072,35 @@ msgstr "çok büyük olabilir" msgid "Navigation" msgstr "Gezinti" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s içinde ara" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Bu belgeler hakkında" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Son güncelleme: %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1174,13 +3128,13 @@ msgstr "Sonraki konu" msgid "next chapter" msgstr "sonraki bölüm" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1188,20 +3142,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:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "ara" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Arama Sonuçları" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1243,36 +3197,36 @@ msgstr "C API'sindeki değişiklikler" msgid "Other changes" msgstr "Diğer değişiklikler" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Bu başlığın kalıcı bağlantısı" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Bu tanımın kalıcı bağlantısı" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Arama Sonuçlarını Gizle" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Aranıyor" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Aramaya hazırlanıyor..." -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, 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_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ", şunun içinde:" @@ -1289,68 +3243,223 @@ msgstr "Yan çubuğu daralt" msgid "Contents" msgstr "İçindekiler" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "Bu tablonun kalıcı bağlantısı" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "Bu kodun kalıcı bağlantısı" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "Bu resmin kalıcı bağlantısı" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "Bu içindekiler tablosunun kalıcı bağlantısı" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +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:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "Dipnotları" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "[resim: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[resim]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 7c56882a9..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": "", "© Copyright %(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 Sphinx %(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 Sphinx %(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": "\u0417\u043c\u0456\u0441\u0442", "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%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 +Documentation.addTranslations({"locale": "uk_UA", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(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 Sphinx %(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 e18733b20..64dca7ad5 100644 Binary files a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo and b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 9c3721328..91c29f823 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: uk_UA\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" +"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:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Вбудовані елементи" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Рівень модуля" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Загальний індекс" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "індекс" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "наступний" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "попередній" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr " (в " -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Автор секції: " -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Автор: " -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Повертає" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Тип повернення" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (С функція)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C член)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C макрос)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C тип)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C змінна)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "функція" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "член" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Нове в версії %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Змінено в версії %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Застаріло починаючи з версії %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ тип)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ член)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ функція)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ клас)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "клас" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (вбудована функція)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (клас)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s атрибут)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "модуль" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "ключове слово" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "оператор" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "об'єкт" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "виняткова ситуація" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "вираз" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "вбудована функція" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Викликає" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модулі %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (вбудована змінна)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (в модулі %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (вбудований клас)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (клас в %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s метод)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s статичний метод)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s статичний метод)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s атрибут)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "модулі" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Застарілий" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "виняткова ситуація" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "статичний метод" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (застарілий)" @@ -722,58 +2235,152 @@ msgstr "" msgid "role" msgstr "" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "змінна оточення; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%sопція командного рядка; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "змінна оточення" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "Індекс модулів" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Сторінка пошуку" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "" msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Доробити" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "синонім :class:`%s`" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Увага" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Застереження" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Небезпека" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Помилка" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Підказка" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Важливо" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Примітка" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Дивись також" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Порада" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Попередження" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Нове в версії %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Змінено в версії %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Застаріло починаючи з версії %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "ключове слово" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "оператор" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "об'єкт" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "вираз" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "вбудована функція" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "Зміст" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Пошук" @@ -1117,35 +3071,35 @@ msgstr "може бути величезним" msgid "Navigation" msgstr "Навігація" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Шукати в %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Про ці документи" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Авторські права" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Востаннє оновлено %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "Наступна тема" msgid "next chapter" msgstr "наступний розділ" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Будь-ласка вімкніть підтримку JavaScript, щоб ввікнути\n\"\n\" пошук." -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1187,20 +3141,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Звідси ви можете шукати ці документи. Введіть ваші пошукові\n слова в поле нижче та натисніть \"пошук\". Зауважте що функція\n пошуку автоматично шукатиме за всіма словами. Сторінки\n що містять менше слів не з'являться в результуючому списку." -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "пошук" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "Результати пошуку" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "зміни C API" msgid "Other changes" msgstr "Інші зміни" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "Постійне посилання на цей заголовок" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "Постійне посилання на це визначення" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "Приховати співпадіння пошуку" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1288,68 +3242,223 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "Реліз" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 1c350cac4..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": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "\u0110\u01b0\u1ee3c t\u1ea1o nh\u1edd Sphinx %(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": "M\u1ee5c L\u1ee5c", "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 +Documentation.addTranslations({"locale": "vi", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(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 Sphinx %(sphinx_version)s.": "\u0110\u01b0\u1ee3c t\u1ea1o nh\u1edd Sphinx %(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 e7ae769fa..2d738c71d 100644 Binary files a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index c4502d250..c920974d8 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,107 +8,133 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\n" -"Last-Translator: Takeshi KOMIYA \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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -116,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -124,169 +150,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" +msgid "doing serial %s" msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -318,6 +464,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -339,368 +490,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "Dựng sẵn" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "Mức mô-đun" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%d/%m/%Y" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Chỉ mục chung" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "chỉ mục" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "xem tiếp" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "xem lại" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "Tài liệu %s %s" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "(trong" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "Tác giả mục:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "Tác giả mô-đun:" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "Tác giả mã lệnh:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "Tác giả:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "Tham số" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "Trả về" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "Kiểu trả về" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (hàm C)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (thuộc tính C)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (macro C)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (kiểu C)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (biến C)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "hàm" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "thuộc tính" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "kiểu" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "biến" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "Mới từ phiên bản %s" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "Thay đổi trong phiên bản %s" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "Sắp loại bỏ từ phiên bản %s" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "Ném" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (kiểu C++)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (thuộc tính C++)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (hàm C++)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (lớp C++)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "lớp" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (hàm dựng sẵn)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (phương thức %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (lớp)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, 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:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (thuộc tính %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "Đối số" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (mô-đun)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "phương thức" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "dữ liệu" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "thuộc tính" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "mô-đun" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "từ khoá" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "toán tử" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "đối tượng" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "ngoại lệ" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "câu lệnh" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "hàm dựng sẵn" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "Các biến" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "Đưa ra" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (trong mô-đun %s)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (biến dựng sẵn)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (trong mô-đun %s)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (lớp dựng sẵn)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (lớp trong %s)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (phương thức %s.%s) " -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (phương thức tĩnh %s.%s)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (phương thức tĩnh %s)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (phương thức lớp %s.%s)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (phương thức lớp %s)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (thuộc tính %s.%s)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Chỉ Mục Mô-đun Python" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "các mô-đun" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "Sắp loại bỏ" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "ngoại lệ" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "phương thức lớp" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "phương thức tĩnh" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "(sắp loại bỏ)" @@ -722,58 +2235,152 @@ msgstr "chỉ thị" msgid "role" msgstr "vai trò" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "các biến môi trường; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "tuỳ chọn dòng lệnh%s; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "chú giải thuật ngữ" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -784,46 +2391,244 @@ msgstr "xem %s" msgid "see also %s" msgstr "nên xem %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "Biểu tượng" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -833,7 +2638,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -843,26 +2648,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -872,171 +2683,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "Các ví dụ" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "Chú ý" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "Cảnh báo" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "Nguy hiểm" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "Lỗi" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "Gợi ý" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "Quan trọng" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "Ghi chú" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "Xem thêm" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "Mẹo" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "Cảnh báo" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "Mới từ phiên bản %s" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "Thay đổi trong phiên bản %s" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "Sắp loại bỏ từ phiên bản %s" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "từ khoá" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "toán tử" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "đối tượng" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "câu lệnh" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "hàm dựng sẵn" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "Mục Lục" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "Tìm Kiếm" @@ -1117,35 +3071,35 @@ msgstr "có thể rất nhiều" msgid "Navigation" msgstr "Điều hướng" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "Tìm kiếm trong %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "Về các tài liệu này" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "Bản quyền" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Cập nhật mới nhất vào %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1173,13 +3127,13 @@ msgstr "Chủ đề tiếp" msgid "next chapter" msgstr "chương tiếp" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 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:32 +#: 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" @@ -1187,20 +3141,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1242,36 +3196,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr "" @@ -1288,68 +3242,223 @@ msgstr "" msgid "Contents" msgstr "Nội dung" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, 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 e82df2535..b18f8c282 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", "© Copyright %(copyright)s.": "© \u7248\u6743\u6240\u6709 %(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 Sphinx %(sphinx_version)s.": "\u7531 Sphinx %(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": "\u5167\u5bb9\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 +Documentation.addTranslations({"locale": "zh_Hans_CN", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© \u7248\u6743\u6240\u6709 %(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 Sphinx %(sphinx_version)s.": "\u7531 Sphinx %(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"}); \ 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 2cc5c263b..7a82a0d75 100644 Binary files a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 6950e17fc..24f50e837 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -3,116 +3,144 @@ # This file is distributed under the same license as the Sphinx project. # # Translators: -# Aifen Qin , 2015,2017 +# Yinian Chin , 2015,2017-2018 +# Hsiaoming Yang , 2018 # Lenville Leo , 2013 # Ryekee Zhong , 2013 # Tower Joo, 2009 -# Aifen Qin , 2013 +# Yinian Chin , 2018 +# Yinian Chin , 2013 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\n" -"Last-Translator: Takeshi KOMIYA \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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "配置目录中缺少 conf.py 文件 (%s)" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "无法找到源码目录 (%s)" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "源码目录和目标目录不能是同一目录" + +#: sphinx/application.py:191 +#, python-format +msgid "Running 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 及以上版本,当前使用版本不能完成文档构建。" -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "创建输出目录…" + +#: sphinx/application.py:244 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 对象。请修改其定义为一个可调用函数。conf.py 作为 Sphinx 扩展时必须如此配置。" -#: sphinx/application.py:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." msgstr "未找到主域 %r,已忽略。" -#: sphinx/application.py:258 sphinx/application.py:286 +#: sphinx/application.py:271 +#, 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 msgid "done" msgstr "完成" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "没有内置信息的翻译" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "正在加载 pickled 环境..." -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "尚未创建" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "失败:%s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "未选择构建程序,默认使用:html" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "完成但存在问题" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." -msgstr "" +msgstr "构建 %s, %s 警告。" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "构建 %s." -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "配置项 %r 已存在" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "正在设置扩展 %s:节点类 %r 已经注册,其访问者将被覆盖" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "键 %r 的值必须是一个 (visit, depart) 函数元组" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "正在设置扩展 %s:指令 %r 已经注册,其将被覆盖" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "正在设置扩展 %s:角色 %r 已经注册,其将被覆盖" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -120,177 +148,297 @@ msgid "" "explicit" msgstr "扩展 %s 没有声明是否并行读取安全,默认假设为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, 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/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" -msgstr "节 %s" +msgid "doing serial %s" +msgstr "生成序号 %s" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "图 %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "表 %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "列表 %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "不能覆盖字典配置项 %r,已忽略 (请用 %r 设置单个字典元素)" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "配置项 %r 数值 %r 无效,已忽略" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "配置项 %r 覆盖值类型不支持,已忽略" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "覆盖中包含未知配置项 %r ,已忽略" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "不存在的配置项:%s" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "配置项 %r 已存在" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "配置文件中有语法错误:%s" + +#: 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 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "配置文件(或配置文件导入的模块)调用了 sys.exit()" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "配置文件中有程序上的错误:\n\n%s" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "配置项 `source_suffix' 应是字符串、字符串列表或字典。但现在是 %r' 。" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "节 %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "图 %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "表 %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "列表 %s" + +#: sphinx/config.py:441 +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__}', defaults to " +"`{default.__name__}'." +msgstr "配置项 `{name}' 的类型是 `{current.__name__}',默认为 `{default.__name__}'。" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "事件 %r 已存在" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "未知事件名称:%s" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." -msgstr "" +msgstr "未能加载 needs_extensions 配置项所需的 %s。" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "未知的 Pygments 词法分析器 %r" + +#: sphinx/highlighting.py:165 +#, 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/registry.py:132 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "构建程序类 %s 未包含 \"name\" 属性" -#: sphinx/registry.py:75 +#: sphinx/registry.py:134 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "构建程序 %r 已存在 (见模块 %s)" -#: sphinx/registry.py:89 +#: sphinx/registry.py:148 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "构建程序 %s 未注册或在入口点不可用" -#: sphinx/registry.py:97 +#: sphinx/registry.py:156 #, python-format msgid "Builder name %s not registered" msgstr "构建程序 %s 未注册" -#: sphinx/registry.py:105 +#: sphinx/registry.py:164 #, python-format msgid "domain %s already registered" msgstr "域 %s 已注册" -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 #, python-format msgid "domain %s not yet registered" msgstr "域 %s 尚未注册" -#: sphinx/registry.py:132 +#: sphinx/registry.py:202 #, python-format -msgid "new domain not a subclass of registered %s domain" -msgstr "新域不是已注册域 %s 的子类" +msgid "The %r directive is already registered to %d domain" +msgstr "指令 %r 已在 %d 域上注册" -#: sphinx/registry.py:204 +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "角色 %r 已在 %d 域上注册" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "索引 %r 已在 %d 域上注册" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "对象类型 %r 已注册" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "交叉引用类型 %r 已注册" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "源文件扩展名 %r 已注册" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "%r 的 source_parser 已注册" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" -msgstr "" +msgstr "未注册 %s 的源代码语法分析器" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" -msgstr "" +msgstr "%r 的 source_input 已注册" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" -msgstr "" +msgstr "%s 的 source_input 未注册" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." -msgstr "" +msgid "Translatoro for %r already exists" +msgstr "%r 的转译器已存在" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, 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 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "可数节点 %r 已注册" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "公式渲染器 %s 已注册" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "原始异常:\n" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "无法导入扩展 %s" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "扩展 %r 未包含setup() 函数;它确实是一个 Sphinx 扩展模块吗?" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -322,10 +470,15 @@ msgstr "未找到主题 %r,则从 %r 继承" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "配置项 %s.%s 在所有已找到主题配置中均未出现" +#: sphinx/theming.py:136 +#, 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 "" +msgstr "主题扩展 %r 未正确响应。" #: sphinx/theming.py:265 #, python-format @@ -343,368 +496,1730 @@ msgstr "sphinx_rtd_theme 从 1.4.0 版本开始不再作为强依赖。请手动 msgid "no theme named %r found (missing theme.conf?)" msgstr "主题 %r 未找到 (缺少 theme.conf?)" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "没有找到适合 %s 构建器的图像:%s (%s)" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "没有找到适合 %s 构建器的图像:%s" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "构建 [mo]:" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "写入输出……" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "所有的 %d po 文件" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "指定了 %d 个 po 文件的目标文件" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "%d 个 po 文件的目标文件已过期" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "所有源文件" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "源文件目录下没有命令行给出的 %r 文件,将被忽略" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "命令行给出的 %r 文件不存在,将被忽略" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "命令行给出了 %d 个源文件" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "%d 个源文件的目标文件已过期" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "构建 [%s]" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "查找当前已过期的文件……" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "找到 %d 个" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "没有找到" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "Pickle 序列化环境……" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "检查一致性……" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "没有过期的目标文件" + +#: sphinx/builders/__init__.py:577 +#, 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:639 +msgid "waiting for workers..." +msgstr "等待其他线程……" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "无法复制图像文件 %r:%s" + +#: sphinx/builders/_epub_base.py:437 +#, 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: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 +#, python-format +msgid "writing %s file..." +msgstr "正在写入 %s 文件……" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "概览文件保存在 %(outdir)s 目录 。" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "%s 版本中没有做出修改。" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "内置" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "模块级别" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "复制源文件……" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "伪构建器不生成文件。" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "ePub 文件保存在 %(outdir)s 目录。" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "对于 EPUB3 格式,配置项“epub_language”(或“language”)不能为空" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "对于 EPUB3 格式,配置项“epub_uid”应为 XML 名称" + +#: sphinx/builders/epub3.py:102 +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 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "对于 EPUB3 格式,配置项“epub_author”不能为空" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "对于 EPUB3 格式,配置项“epub_contributor”不能为空" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "对于 EPUB3 格式,配置项“epub_description”不能为空" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "对于 EPUB3 格式,配置项“epub_publisher”不能为空" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "对于 EPUB3 格式,配置项“epub_copyright”(或“copyright”)不能为空" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "对于 EPUB3 格式,配置项“epub_identifier”不能为空" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "对于 EPUB3 格式,配置项“version”不能为空" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "无效的 css_file:%r,已忽略" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "消息目录保存在 %(outdir)s 目录。" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "构建 [%s]:" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "%d 个模板文件的目标文件" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "读取模板……" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "写入消息目录……" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "构建信息文件损坏:%r" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "HTML 页面保存在 %(outdir)s 目录。" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +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 msgid "General Index" msgstr "总目录" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "索引" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "下一页" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "上一页" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "生成索引……" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "复制可下载文件……" + +#: sphinx/builders/html.py:872 +#, python-format +msgid "cannot copy downloadable file %r: %s" +msgstr "无法复制可下载文件 %r:%s" + +#: 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 "html_static_path 指向的 %r 不存在" + +#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#, python-format +msgid "logo file %r does not exist" +msgstr "Logo 文件 %r 不存在" + +#: sphinx/builders/html.py:931 +#, python-format +msgid "favicon file %r does not exist" +msgstr "Favicon 文件 %r 不存在" + +#: sphinx/builders/html.py:940 +#, python-format +msgid "cannot copy static file %r" +msgstr "无法复制静态文件 %r" + +#: 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 "html_extra_path 指向的 %r 不存在" + +#: sphinx/builders/html.py:958 +#, python-format +msgid "cannot copy extra file %r" +msgstr "无法复制额外文件 %r" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "写入构建信息文件失败:%r" + +#: sphinx/builders/html.py:1013 +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 +#, 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 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "写入文件 %s 时发生错误:%s" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "导出对象清单……" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "无效的 js_file:%r,已忽略" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "注册了多个 math_renderers。但没有选择任何 math_renderer。" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "给定了未知的 math_renderer %r" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s 文档" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, 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 +#, python-format +msgid "Anchor '%s' not found" +msgstr "锚点“%s”未找到" + +#: sphinx/builders/linkcheck.py:257 +#, python-format +msgid "broken link: %s (%s)" +msgstr "损坏的链接:%s(%s)" + +#: sphinx/builders/manpage.py:43 +#, python-format +msgid "The manual pages are in %(outdir)s." +msgstr "手册页保存在 %(outdir)s 目录。" + +#: sphinx/builders/manpage.py:51 +msgid "no \"man_pages\" config value found; no manual pages will be written" +msgstr "未找到“man_pages”配置项,不会写入手册页" + +#: sphinx/builders/qthelp.py:59 +#, 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" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "写入集合项目文件……" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "Texinfo 文件保存在 %(outdir)s 目录。" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "未找到“texinfo_documents”配置项,不会写入文档" + +#: sphinx/builders/texinfo.py:144 +#, 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 +#, python-format +msgid "processing %s..." +msgstr "处理 %s……" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "解析引用……" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "(在" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "复制 Texinfo 支持文件……" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "完成" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "文本文件保存在 %(outdir)s 目录。" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "XML 文件保存在 %(outdir)s 目录。" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "伪 XML 文件保存在 %(outdir)s。" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "LaTex 文件保存在 %(outdir)s 目录。" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "未找到“latex_documents”配置项,不会写入文档" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "配置项“latex_documents”引用了未知文档 %s" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support files..." +msgstr "复制 TeX 支持文件……" + +#: 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 "无效的 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "未知配置项:latex_elements[%r],已忽略。" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "构建时抛出异常,启动调试器:" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "已中断!" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "reST 标记错误:" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "编码错误:" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "递归错误:" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr " import sys; sys.setrecursionlimit(1500)" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "抛出异常:" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "请向 Bug 追踪系统 投递 Bug 报告。谢谢!" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "更多信息请访问 。" + +#: sphinx/cmd/build.py:111 +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 "\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 +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 "指定重新构建的文件列表。如果指定了 -a 参数,则忽略此项。" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "通用选项" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "构建器(默认:html)" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "写入所有文件(默认:只写入新文件和修改过的文件)" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "不使用已保存的环境,始终读取全部文件" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "缓存环境和 doctree 文件路径(默认:OUTPUTDIR/.doctrees)" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "文档结构参数" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "项目基本参数" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "扩展程序选项" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "项目模板" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "检测到过度的去缩进" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "无效的标题:%s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "\"%s\" 和 \"%s\" 选项不能同时使用" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "包含的文件 %r 不存在或读取失败" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "对象 %r 在包含文件 %r 中不存在" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "不能在互斥的 \"lines\" 集合上使用 \"lineno-match\" 选项" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "行规范 %r:未能从包含文件 %r 中拉取行" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " -msgstr "章节作者:" +msgstr "节作者:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "模块作者:" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "代码作者:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "作者:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "参数" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "返回" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "返回类型" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C 函数)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C 成员)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C 宏)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C 类型)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C 变量)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "函数" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "成员" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "宏" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "类型" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "变量" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "%s 新版功能" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "在 %s 版更改" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "%s 版后已移除" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "模板参数" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "抛出" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ 类型)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (C++ 概念)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ 成员)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ 函数)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ 类)" -#: sphinx/domains/cpp.py:5678 +#: 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:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++ 枚举子)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "类" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "概念" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "枚举" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "枚举子" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (內置函数)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 方法)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (类)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (全局变量或常量)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 属性)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "参数" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (模块)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "数据" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "属性" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "模块" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "重复的公式标签 %s,另一实例出现在 %s" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "关键字" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "运算符" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "对象" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "例外" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "语句" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "內置函数" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "变量" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "引发" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (內置变量)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (內置类)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的类)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s 方法)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s 静态方法)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 静态方法)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s 类方法)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 类方法)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s 属性)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python 模块索引" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "模块" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "已移除" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "例外" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "类方法" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "静态方法" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (已移除)" @@ -726,58 +2241,152 @@ msgstr "指令" msgid "role" msgstr "角色" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "环境变量; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%s命令行选项; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "术语" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "语法记号" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "引用标签" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "环境变量" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "程序选项" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "文档" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "模块索引" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜索页面" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -788,46 +2397,244 @@ msgstr "见 %s" msgid "see also %s" msgstr "参见 %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "符号" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "'%s' 选项中缺少 '+' 或 '-'。" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' 不是一个有效选项。" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' 不是一个有效的 pyversion 选项。" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz 指令不能同时指定内容和文件名参数" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "外部 Graphviz 文件 %r 不存在或读取失败" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "已忽略无内容的 \"graphviz 指令" -#: sphinx/ext/graphviz.py:244 +#: sphinx/ext/graphviz.py:255 #, 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -837,7 +2644,7 @@ msgid "" "%s" msgstr "Dot 退出并报错:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -847,26 +2654,32 @@ msgid "" "%s" msgstr "Dot 未生成输出文件:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, 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:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[图表:%s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[图表]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "格式转换命令 %r 不能执行。请检查 image_converter 设置" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -876,178 +2689,321 @@ msgid "" "%s" msgstr "格式转换程序退出并报错:\n[stderr]\n%s\n[stdout]\n%s" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "公式的永久链接" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(在 %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" -msgstr "" +msgstr "(在 %s)" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[源代码]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "重复的公式标签 %s,另一实例出现在 %s" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "待处理" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> 见 %s,第 %d 行。)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "原始记录" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[文档]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "模块代码" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

%s 源代码

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "概览:模块代码" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

代码可用的所有模块

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "基类:%s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` 的别名" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "关键字参数" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "实际案例" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "注意" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "警告" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "危险" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "错误" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "提示" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "重要" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "注解" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "参见" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "小技巧" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "警告" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "%s 新版功能" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "在 %s 版更改" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "%s 版后已移除" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "关键字" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "运算符" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "对象" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "语句" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "內置函数" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "续上页" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "內容目录" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "搜" +msgstr "转向" #: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" @@ -1121,35 +3077,35 @@ msgstr "可能会很多" msgid "Navigation" msgstr "导航" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "在 %(docstitle)s 中搜索" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "关于这些文档" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "版权所有" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© 版权所有 %(copyright)s." -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© 版权所有 %(copyright)s." -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "最后更新于 %(last_updated)s." -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1177,13 +3133,13 @@ msgstr "下一个主题" msgid "next chapter" msgstr "下一章" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "请激活 JavaScript 以开启搜索功能" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1191,20 +3147,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "在这儿,你可以对这些文档进行搜索。向搜索框中输入你所要搜索的关键字并点击“搜索”。注意:搜索引擎会自动搜索所有的关键字。将不会搜索到部分关键字的页面." -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "搜索" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "搜索结果" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1246,36 +3202,36 @@ msgstr "C API 更改" msgid "Other changes" msgstr "其他更改" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" -msgstr "标题的永久链接" +msgstr "永久链接至标题" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" -msgstr "定义的永久链接" +msgstr "永久链接至目标" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "隐藏搜索结果" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "搜索中" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "准备搜索……" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "搜索完成,有 %s 个页面匹配。" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr ",在" @@ -1292,68 +3248,223 @@ msgstr "折叠边栏" msgid "Contents" msgstr "目录" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "%s:%s 引用目标不存在:%%(target)s" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "%r 引用目标不存在:%%(target)s" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "当添加指令类时,不应该给定额外参数" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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 "表格的永久链接" +msgstr "永久链接至表格" -#: sphinx/writers/html.py:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" -msgstr "代码的永久链接" +msgstr "永久链接至代码" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" -msgstr "图片的永久链接" +msgstr "永久链接至图片" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" -msgstr "目录的永久链接" +msgstr "永久链接至目录树" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "发布" -#: sphinx/writers/latex.py:714 -msgid "continues on next page" +#: sphinx/writers/latex.py:531 +#, python-format +msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:718 +#: sphinx/writers/latex.py:582 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/writers/latex.py:633 +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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "未知配置项:latex_elements[%r] 已忽略。" +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "脚注" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[图片: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[图片]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, python-format +msgid "unknown node type: %r" +msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js index 4f7a1ac04..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", "© Copyright %(copyright)s.": "© \u7248\u6b0a\u6240\u6709 %(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 Sphinx %(sphinx_version)s.": "\u4f7f\u7528 Sphinx %(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": "\u524d\u5f80", "Hide Search Matches": "\u96b1\u85cf\u7b26\u5408\u641c\u5c0b", "Index": "\u7d22\u5f15", "Index – %(key)s": "\u7d22\u5f15 – %(key)s", "Index pages by letter": "\u7d22\u5f15\u9801\u9762\u6309\u5b57\u6bcd", "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": "\u76ee\u9304", "This Page": "\u672c\u9801", "Welcome! This is": "\u6b61\u8fce\uff01\u672c", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u4f60\u7684\u641c\u5c0b\u627e\u4e0d\u5230\u4efb\u4f55\u6eff\u8db3\u689d\u4ef6\u7684\u6587\u4ef6\u3002\u8acb\u78ba\u5b9a\u662f\u5426\u6240\u6709\u7684\u641c\u5c0b\u8a5e\u90fd\u6b63\u78ba\u5730\u62fc\u5beb\u4e14\u4f60\u5df2\u9078\u64c7\u8db3\u5920\u7684\u5206\u985e\u3002", "all functions, classes, terms": "\u6240\u6709\u51fd\u5f0f\u3001\u985e\u5225\u3001\u8853\u8a9e", "can be huge": "\u53ef\u80fd\u6703\u5f88\u5927", "last updated": "\u6700\u5f8c\u66f4\u65b0\u65bc", "lists all sections and subsections": "\u5217\u51fa\u6240\u6709\u6bb5\u843d\u8207\u5b50\u6bb5\u843d", "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 +Documentation.addTranslations({"locale": "zh_Hant_TW", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© \u7248\u6b0a\u6240\u6709 %(copyright)s\u3002", "© Copyright %(copyright)s.": "© \u7248\u6b0a\u6240\u6709 %(copyright)s\u3002", ", in ": " \u65bc ", "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 Sphinx %(sphinx_version)s.": "\u4f7f\u7528 Sphinx %(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 9ba3044e7..0ae9bc7d9 100644 Binary files a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 4ef2d04e6..6ddf35143 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -3,115 +3,143 @@ # This file is distributed under the same license as the Sphinx project. # # Translators: +# Adrian Liaw , 2018 # Fred Lin , 2008 # Game Arming , 2017 +# Hsiaoming Yang , 2018 # Liang-Bo Wang , 2016 # Liang-Bo Wang , 2016-2017 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-02-07 09:08+0900\n" -"PO-Revision-Date: 2018-02-07 00:15+0000\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 \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" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.6.0\n" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:176 +#: sphinx/application.py:152 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:156 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:160 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:191 +#, 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 v%s 版本以上,故無法以現版本編譯。" -#: sphinx/application.py:207 +#: sphinx/application.py:234 +msgid "making output directory..." +msgstr "" + +#: sphinx/application.py:244 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 的可呼叫物件。請修改它並使它成為一個可呼叫的函式。若要使 conf.py 以 Sphinx 擴充套件的方式運作,這個修改是必須的。" -#: sphinx/application.py:221 +#: sphinx/application.py:256 #, python-format msgid "primary_domain %r not found, ignored." +msgstr "找不到 primary_domain:%r,略過。" + +#: sphinx/application.py:271 +#, python-format +msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:258 sphinx/application.py:286 +#: 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 msgid "done" msgstr "完成" -#: sphinx/application.py:279 +#: sphinx/application.py:289 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:300 msgid "loading pickled environment... " msgstr "讀入 pickle 化環境…" -#: sphinx/application.py:289 -msgid "not yet created" -msgstr "尚未創建" - -#: sphinx/application.py:291 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "失敗:%s" -#: sphinx/application.py:301 +#: sphinx/application.py:316 msgid "No builder selected, using default: html" msgstr "沒有指定 builder,使用預設:html" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:333 +#: sphinx/application.py:347 msgid "finished with problems" msgstr "完成問題" -#: sphinx/application.py:335 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:339 +#: sphinx/application.py:353 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:460 -#, python-format -msgid "Config value %r already present" -msgstr "" - -#: sphinx/application.py:479 +#: sphinx/application.py:626 #, python-format msgid "" "while setting up extension %s: node class %r is already registered, its " "visitors will be overridden" msgstr "" -#: sphinx/application.py:488 -#, python-format -msgid "Value for key %r must be a (visit, depart) function tuple" -msgstr "" - -#: sphinx/application.py:528 +#: sphinx/application.py:724 #, python-format msgid "" "while setting up extension %s: directive %r is already registered, it will " "be overridden" msgstr "" -#: sphinx/application.py:539 sphinx/application.py:551 +#: 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 "" -#: sphinx/application.py:690 +#: sphinx/application.py:1268 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -119,7 +147,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:696 +#: sphinx/application.py:1274 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -127,169 +155,289 @@ msgid "" "explicit" msgstr "" -#: sphinx/config.py:133 +#: sphinx/application.py:1285 #, python-format -msgid "Section %s" -msgstr "段落 %s" +msgid "doing serial %s" +msgstr "" -#: sphinx/config.py:134 -#, python-format -msgid "Fig. %s" -msgstr "圖 %s" - -#: sphinx/config.py:135 -#, python-format -msgid "Table %s" -msgstr "表 %s" - -#: sphinx/config.py:136 -#, python-format -msgid "Listing %s" -msgstr "程式 %s" - -#: sphinx/config.py:249 +#: sphinx/config.py:212 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:221 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:263 +#: sphinx/config.py:226 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:293 +#: sphinx/config.py:256 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:313 +#: sphinx/config.py:274 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/events.py:57 +#: sphinx/config.py:304 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:355 +#, python-format +msgid "There is a syntax error in your configuration file: %s" +msgstr "" + +#: sphinx/config.py:357 +msgid "" +"\n" +"Did you change the syntax from 2.x to 3.x?" +msgstr "" + +#: sphinx/config.py:360 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:364 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:391 +#, python-format +msgid "" +"The config value `source_suffix' expected to a string, list of strings or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:399 +#, python-format +msgid "Section %s" +msgstr "段落 %s" + +#: sphinx/config.py:400 +#, python-format +msgid "Fig. %s" +msgstr "圖 %s" + +#: sphinx/config.py:401 +#, python-format +msgid "Table %s" +msgstr "表 %s" + +#: sphinx/config.py:402 +#, python-format +msgid "Listing %s" +msgstr "程式 %s" + +#: sphinx/config.py:441 +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 "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:481 +#, 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 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" -"The %s extension is required by needs_extensions settings,but it is not " +"The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:58 +#: sphinx/extension.py:60 #, 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/registry.py:73 +#: sphinx/highlighting.py:144 #, python-format -msgid "Builder class %s has no \"name\" attribute" +msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/registry.py:75 +#: sphinx/highlighting.py:165 #, python-format -msgid "Builder %r already exists (in module %s)" +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/registry.py:89 +#: sphinx/io.py:209 #, python-format -msgid "Builder name %s not registered or available through entry point" -msgstr "" - -#: sphinx/registry.py:97 -#, python-format -msgid "Builder name %s not registered" -msgstr "" - -#: sphinx/registry.py:105 -#, python-format -msgid "domain %s already registered" -msgstr "" - -#: sphinx/registry.py:130 sphinx/registry.py:142 sphinx/registry.py:150 -#: sphinx/registry.py:158 -#, python-format -msgid "domain %s not yet registered" +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" #: sphinx/registry.py:132 #, python-format -msgid "new domain not a subclass of registered %s domain" +msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:148 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:156 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:164 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:202 +#, python-format +msgid "The %r directive is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:216 +#, python-format +msgid "The %r role is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:227 +#, python-format +msgid "The %r index is already registered to %d domain" +msgstr "" + +#: sphinx/registry.py:251 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:271 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:279 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:309 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:217 +#: sphinx/registry.py:325 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:343 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:253 +#: sphinx/registry.py:356 #, python-format msgid "source_input for %s not registered" msgstr "" -#: sphinx/registry.py:259 +#: sphinx/registry.py:362 #, python-format -msgid "Change of translator for the %s builder." +msgid "Translatoro for %r already exists" msgstr "" -#: sphinx/registry.py:304 +#: sphinx/registry.py:374 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:444 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:452 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:463 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:315 +#: sphinx/registry.py:474 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:316 +#: sphinx/registry.py:475 #, python-format msgid "Could not import extension %s" msgstr "無法引入擴充套件 %s" -#: sphinx/registry.py:319 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:487 #, 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:338 +#: sphinx/registry.py:495 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -321,6 +469,11 @@ msgstr "" msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" +#: sphinx/theming.py:136 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + #: sphinx/theming.py:238 #, python-format msgid "Theme extension %r does not respond correctly." @@ -342,368 +495,1730 @@ msgstr "" msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/changes.py:85 +#: sphinx/builders/__init__.py:226 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:230 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:252 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:629 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:267 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:289 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:300 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:308 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:322 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:327 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:338 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:349 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:359 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:366 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:371 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:373 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:377 +msgid "pickling environment... " +msgstr "" + +#: sphinx/builders/__init__.py:385 +msgid "checking consistency... " +msgstr "" + +#: sphinx/builders/__init__.py:390 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:577 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 +msgid "preparing documents... " +msgstr "" + +#: sphinx/builders/__init__.py:639 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/_epub_base.py:415 +#, 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 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:437 +#, python-format +msgid "cannot write image file %r: %s" +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 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:541 +#, 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 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:70 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:89 msgid "Builtins" msgstr "內建" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:91 msgid "Module level" msgstr "模組層次" -#: sphinx/builders/html.py:443 sphinx/transforms/__init__.py:127 -#: sphinx/writers/latex.py:583 sphinx/writers/manpage.py:110 +#: sphinx/builders/changes.py:136 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:143 +#, 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 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:70 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:95 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:99 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:102 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:106 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:109 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:112 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:115 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:118 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:122 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:125 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:243 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:244 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:248 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:272 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:240 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:279 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:472 +#, 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 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html.py:461 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:584 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "總索引" -#: sphinx/builders/html.py:461 +#: sphinx/builders/html.py:590 msgid "index" msgstr "索引" -#: sphinx/builders/html.py:525 +#: sphinx/builders/html.py:654 msgid "next" msgstr "下一頁" -#: sphinx/builders/html.py:534 +#: sphinx/builders/html.py:663 msgid "previous" msgstr "上一頁" -#: sphinx/builders/html.py:1424 +#: sphinx/builders/html.py:761 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:779 +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 +msgid "copying downloadable files... " +msgstr "" + +#: 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 "" + +#: sphinx/builders/html.py:966 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:1013 +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 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1182 +#, 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 +#, 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 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1218 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1225 +#, 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 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1661 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1664 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1681 #, python-format msgid "%s %s documentation" msgstr "%s %s 說明文件" -#: sphinx/builders/latex.py:204 sphinx/builders/texinfo.py:224 +#: 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 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:159 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, 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/qthelp.py:59 +#, 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 "" + +#: sphinx/builders/qthelp.py:161 +msgid "writing collection project file..." +msgstr "" + +#: sphinx/builders/texinfo.py:101 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:103 +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 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:144 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#, python-format +msgid "processing %s..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 msgid " (in " msgstr "(於" -#: sphinx/directives/code.py:66 +#: sphinx/builders/texinfo.py:237 +msgid "copying Texinfo support files... " +msgstr "" + +#: sphinx/builders/texinfo.py:246 +msgid " done" +msgstr "" + +#: sphinx/builders/text.py:35 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:39 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:114 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:117 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:119 +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 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:162 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:312 +msgid "copying TeX support 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 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +msgstr "" + +#: sphinx/cmd/build.py:42 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:52 +msgid "interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:54 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:60 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#, 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 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:70 +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 +msgid " import sys; sys.setrecursionlimit(1500)" +msgstr "" + +#: sphinx/cmd/build.py:75 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:81 +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 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:101 +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 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:111 +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: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 "" + +#: sphinx/cmd/build.py:139 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:142 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:150 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:166 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:169 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:171 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "console output options" +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 "" + +#: sphinx/cmd/build.py:183 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:186 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: 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 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:231 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:241 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:260 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:270 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:282 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: 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 "" + +#: 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 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:123 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:132 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:140 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:147 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:170 +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 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +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 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:275 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:277 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:279 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:285 +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:289 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +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:297 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:300 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:302 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +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:313 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:315 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:318 +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:325 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:330 +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 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +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:341 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:347 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:349 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:351 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:355 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:365 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:370 +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:374 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:377 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:481 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:483 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +#, 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 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:529 +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:539 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:556 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:558 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:562 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:564 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:570 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:576 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:578 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:584 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:587 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:590 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:593 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:595 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:598 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:601 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:628 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:642 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:644 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:671 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:75 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:86 +#: sphinx/directives/code.py:95 #, python-format msgid "Invalid caption: %s" msgstr "無效標題:%s" -#: sphinx/directives/code.py:201 +#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 +#: sphinx/directives/code.py:450 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:210 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:214 +#: sphinx/directives/code.py:223 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:216 +#: sphinx/directives/code.py:225 #, 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:254 +#: sphinx/directives/code.py:263 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:280 +#: sphinx/directives/code.py:289 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:285 +#: sphinx/directives/code.py:294 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:157 +#: sphinx/directives/other.py:169 msgid "Section author: " msgstr "段落作者:" -#: sphinx/directives/other.py:159 +#: sphinx/directives/other.py:171 msgid "Module author: " msgstr "模組作者:" -#: sphinx/directives/other.py:161 +#: sphinx/directives/other.py:173 msgid "Code author: " msgstr "程式作者:" -#: sphinx/directives/other.py:163 +#: sphinx/directives/other.py:175 msgid "Author: " msgstr "作者:" -#: sphinx/domains/__init__.py:334 +#: sphinx/domains/__init__.py:336 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:5440 -#: sphinx/domains/python.py:176 +#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 +#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 msgid "Parameters" msgstr "參數" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:5449 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:188 +#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 +#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 msgid "Returns" msgstr "傳回" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:212 -#: sphinx/domains/python.py:190 +#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 +#: sphinx/domains/python.py:226 msgid "Return type" msgstr "傳回型態" -#: sphinx/domains/c.py:188 +#: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" msgstr "%s (C 函式)" -#: sphinx/domains/c.py:190 +#: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" msgstr "%s (C 成員函數)" -#: sphinx/domains/c.py:192 +#: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" msgstr "%s (C 巨集)" -#: sphinx/domains/c.py:194 +#: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" msgstr "%s (C 型態)" -#: sphinx/domains/c.py:196 +#: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" msgstr "%s (C 變數)" -#: sphinx/domains/c.py:257 sphinx/domains/cpp.py:5863 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:705 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 msgid "function" msgstr "函式" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:5864 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 msgid "member" msgstr "成員函數" -#: sphinx/domains/c.py:259 +#: sphinx/domains/c.py:260 msgid "macro" msgstr "巨集" -#: sphinx/domains/c.py:260 sphinx/domains/cpp.py:5865 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 msgid "type" msgstr "類型" -#: sphinx/domains/c.py:261 +#: sphinx/domains/c.py:262 msgid "variable" msgstr "變數" -#: sphinx/domains/cpp.py:5443 +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "New in version %s" +msgstr "%s 版新加入" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Changed in version %s" +msgstr "%s 版更變" + +#: sphinx/domains/changeset.py:36 +#, python-format +msgid "Deprecated since version %s" +msgstr "%s 版後已棄用" + +#: sphinx/domains/cpp.py:4037 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6073 msgid "Template Parameters" msgstr "範本參數" -#: sphinx/domains/cpp.py:5446 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 msgid "Throws" msgstr "拋出" -#: sphinx/domains/cpp.py:5628 +#: sphinx/domains/cpp.py:6283 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ 類別)" -#: sphinx/domains/cpp.py:5638 +#: sphinx/domains/cpp.py:6293 #, python-format msgid "%s (C++ concept)" msgstr "%s (C++ concept)" -#: sphinx/domains/cpp.py:5648 +#: sphinx/domains/cpp.py:6303 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ 成員函數)" -#: sphinx/domains/cpp.py:5658 +#: sphinx/domains/cpp.py:6313 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ 函式)" -#: sphinx/domains/cpp.py:5668 +#: sphinx/domains/cpp.py:6323 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ 類別)" -#: sphinx/domains/cpp.py:5678 +#: 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)" -#: sphinx/domains/cpp.py:5698 +#: sphinx/domains/cpp.py:6363 #, python-format msgid "%s (C++ enumerator)" msgstr "%s (C++ enumerator)" -#: sphinx/domains/cpp.py:5862 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:707 +#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 +#: sphinx/domains/python.py:742 msgid "class" msgstr "類別" -#: sphinx/domains/cpp.py:5866 +#: sphinx/domains/cpp.py:6546 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6550 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:5867 +#: sphinx/domains/cpp.py:6551 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:5868 +#: sphinx/domains/cpp.py:6552 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:395 +#: sphinx/domains/cpp.py:6617 +#, 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 #, python-format msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:460 +#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 的方法)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s() (class)" msgstr "%s() (類別)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:137 #, python-format msgid "%s (global variable or constant)" msgstr "%s (全域變數或常數)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:498 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 的屬性)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:205 msgid "Arguments" msgstr "引數" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:575 +#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 #, python-format msgid "%s (module)" msgstr "%s (模組)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:709 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 msgid "method" msgstr "成員函式" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:706 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:712 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 msgid "attribute" msgstr "屬性" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:713 -#: sphinx/locale/__init__.py:218 +#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 +#: sphinx/domains/python.py:748 msgid "module" msgstr "模組" -#: sphinx/domains/python.py:181 +#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:113 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "重覆公式標籤 %s,亦出現於 %s" + +#: sphinx/domains/python.py:51 +msgid "keyword" +msgstr "關鍵字" + +#: sphinx/domains/python.py:52 +msgid "operator" +msgstr "運算子" + +#: sphinx/domains/python.py:53 +msgid "object" +msgstr "物件" + +#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +msgid "exception" +msgstr "例外" + +#: sphinx/domains/python.py:55 +msgid "statement" +msgstr "陳述式" + +#: sphinx/domains/python.py:56 +msgid "built-in function" +msgstr "內建函式" + +#: sphinx/domains/python.py:217 msgid "Variables" msgstr "變數" -#: sphinx/domains/python.py:185 +#: sphinx/domains/python.py:221 msgid "Raises" msgstr "丟出" -#: sphinx/domains/python.py:396 sphinx/domains/python.py:454 -#: sphinx/domains/python.py:466 sphinx/domains/python.py:479 +#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 +#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 #, python-format msgid "%s() (in module %s)" msgstr "%s() (於 %s 模組中)" -#: sphinx/domains/python.py:399 +#: sphinx/domains/python.py:435 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python.py:400 sphinx/domains/python.py:492 +#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 #, python-format msgid "%s (in module %s)" msgstr "%s (於 %s 模組中)" -#: sphinx/domains/python.py:420 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:457 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的類別)" -#: sphinx/domains/python.py:458 +#: sphinx/domains/python.py:494 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s 的成員函數)" -#: sphinx/domains/python.py:470 +#: sphinx/domains/python.py:506 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s 的靜態成員)" -#: sphinx/domains/python.py:473 +#: sphinx/domains/python.py:509 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 的靜態成員)" -#: sphinx/domains/python.py:483 +#: sphinx/domains/python.py:519 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s 的類別成員)" -#: sphinx/domains/python.py:486 +#: sphinx/domains/python.py:522 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 的類別成員)" -#: sphinx/domains/python.py:496 +#: sphinx/domains/python.py:532 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s 的屬性)" -#: sphinx/domains/python.py:634 +#: sphinx/domains/python.py:669 msgid "Python Module Index" msgstr "Python 模組索引" -#: sphinx/domains/python.py:635 +#: sphinx/domains/python.py:670 msgid "modules" msgstr "模組" -#: sphinx/domains/python.py:683 +#: sphinx/domains/python.py:718 msgid "Deprecated" msgstr "已棄用" -#: sphinx/domains/python.py:708 sphinx/locale/__init__.py:222 -msgid "exception" -msgstr "例外" - -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:745 msgid "class method" msgstr "類別成員" -#: sphinx/domains/python.py:711 +#: sphinx/domains/python.py:746 msgid "static method" msgstr "靜態成員" -#: sphinx/domains/python.py:883 +#: sphinx/domains/python.py:878 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "(已棄用)" @@ -725,58 +2240,152 @@ msgstr "directive" msgid "role" msgstr "role" -#: sphinx/domains/std.py:83 sphinx/domains/std.py:100 +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" msgstr "環境變數; %s" -#: sphinx/domains/std.py:199 +#: sphinx/domains/std.py:164 +#, 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 #, python-format msgid "%scommand line option; %s" msgstr "%s命令列選項; %s" -#: sphinx/domains/std.py:454 +#: sphinx/domains/std.py:455 msgid "glossary term" msgstr "雜項術語" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:456 msgid "grammar token" msgstr "語法單詞" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:457 msgid "reference label" msgstr "參照標籤" -#: sphinx/domains/std.py:458 +#: sphinx/domains/std.py:459 msgid "environment variable" msgstr "環境變數" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:460 msgid "program option" msgstr "程式選項" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:461 msgid "document" msgstr "" -#: sphinx/domains/std.py:497 sphinx/themes/basic/genindex-single.html:30 +#: 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:147 -#: sphinx/writers/latex.py:550 sphinx/writers/texinfo.py:516 +#: 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:498 +#: sphinx/domains/std.py:499 msgid "Module Index" msgstr "模組索引" -#: sphinx/domains/std.py:499 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜尋頁面" +#: sphinx/domains/std.py:595 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:652 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:735 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:743 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:754 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:768 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:771 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:79 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:80 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:81 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:223 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:225 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:292 +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 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:599 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:694 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:734 +msgid "document isn't included in any toctree" +msgstr "" + #: sphinx/environment/adapters/indexentries.py:85 #, python-format msgid "see %s" @@ -787,46 +2396,244 @@ msgstr "參考 %s" msgid "see also %s" msgstr "也參考 %s" -#: sphinx/environment/adapters/indexentries.py:159 +#: sphinx/environment/adapters/indexentries.py:92 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 msgid "Symbols" msgstr "符號" -#: sphinx/ext/doctest.py:132 +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:175 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:93 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:134 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:193 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:74 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:304 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:317 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:324 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:327 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:330 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "include \"_private\" modules" +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 "" + +#: sphinx/ext/apidoc.py:352 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:356 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "file suffix (default: rst)" +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 "" + +#: sphinx/ext/apidoc.py:367 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:369 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:371 +msgid "project version, used when --full is given" +msgstr "" + +#: 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 "" + +#: sphinx/ext/apidoc.py:403 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:49 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:58 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:73 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:155 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:143 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:137 +#: sphinx/ext/doctest.py:148 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:151 +#: sphinx/ext/doctest.py:162 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/graphviz.py:136 +#: sphinx/ext/doctest.py:231 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:292 +#, 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 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:535 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:139 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:147 +#: sphinx/ext/graphviz.py:149 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:153 +#: sphinx/ext/graphviz.py:155 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:244 +#: 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:262 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "" "dot exited with error:\n" @@ -836,7 +2643,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:265 +#: sphinx/ext/graphviz.py:276 #, python-format msgid "" "dot did not produce an output file:\n" @@ -846,26 +2653,32 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:287 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:377 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 +#: sphinx/ext/graphviz.py:383 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 #, python-format msgid "[graph: %s]" msgstr "[圖:%s]" -#: sphinx/ext/graphviz.py:379 sphinx/ext/graphviz.py:388 +#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 msgid "[graph]" msgstr "[圖]" -#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:63 +#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:76 +#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 #, python-format msgid "" "convert exited with error:\n" @@ -875,171 +2688,314 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/imgmath.py:338 sphinx/ext/jsmath.py:41 sphinx/ext/mathjax.py:42 +#: sphinx/ext/imgmath.py:143 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:163 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:302 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:329 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 msgid "Permalink to this equation" msgstr "本公式的永久連結" -#: sphinx/ext/intersphinx.py:339 +#: sphinx/ext/intersphinx.py:226 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:268 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:343 #, python-format msgid "(in %s v%s)" msgstr "(於 %s v%s)" -#: sphinx/ext/intersphinx.py:341 +#: sphinx/ext/intersphinx.py:345 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:111 +#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 msgid "[source]" msgstr "[原始碼]" -#: sphinx/ext/mathbase.py:124 -#, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "重覆公式標籤 %s,亦出現於 %s" - #: sphinx/ext/todo.py:67 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:154 +#: sphinx/ext/todo.py:105 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:153 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:157 +#: sphinx/ext/todo.py:156 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> 見 %s ,第 %d 行)" -#: sphinx/ext/todo.py:166 +#: sphinx/ext/todo.py:165 msgid "original entry" msgstr "原始記錄" -#: sphinx/ext/viewcode.py:179 +#: sphinx/ext/viewcode.py:196 msgid "[docs]" msgstr "[文件]" -#: sphinx/ext/viewcode.py:193 +#: sphinx/ext/viewcode.py:210 msgid "Module code" msgstr "模組原始碼" -#: sphinx/ext/viewcode.py:199 +#: sphinx/ext/viewcode.py:216 #, python-format msgid "

Source code for %s

" msgstr "

%s 的原始碼

" -#: sphinx/ext/viewcode.py:225 +#: sphinx/ext/viewcode.py:242 msgid "Overview: module code" msgstr "概要:模組原始碼" -#: sphinx/ext/viewcode.py:226 +#: sphinx/ext/viewcode.py:243 msgid "

All modules for which code is available

" msgstr "

所有可得程式碼的模組

" -#: sphinx/ext/autodoc/__init__.py:1120 +#: sphinx/ext/autodoc/__init__.py:345 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:444 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:566 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:654 +#, 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 +#, 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:835 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:842 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:876 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:889 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1134 #, python-format msgid "Bases: %s" msgstr "基礎類別:%s" -#: sphinx/ext/autodoc/__init__.py:1181 +#: sphinx/ext/autodoc/__init__.py:1195 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` 的別名" -#: sphinx/ext/napoleon/__init__.py:320 +#: 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 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:683 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:105 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:109 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:370 +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:387 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:391 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: 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 msgid "Keyword Arguments" msgstr "關鍵字引數" -#: sphinx/locale/__init__.py:198 +#: sphinx/ext/napoleon/docstring.py:626 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:683 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:687 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:739 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:776 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:781 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:341 msgid "Attention" msgstr "注意" -#: sphinx/locale/__init__.py:199 +#: sphinx/locale/__init__.py:342 msgid "Caution" msgstr "警示" -#: sphinx/locale/__init__.py:200 +#: sphinx/locale/__init__.py:343 msgid "Danger" msgstr "危險" -#: sphinx/locale/__init__.py:201 +#: sphinx/locale/__init__.py:344 msgid "Error" msgstr "錯誤" -#: sphinx/locale/__init__.py:202 +#: sphinx/locale/__init__.py:345 msgid "Hint" msgstr "提示" -#: sphinx/locale/__init__.py:203 +#: sphinx/locale/__init__.py:346 msgid "Important" msgstr "重要" -#: sphinx/locale/__init__.py:204 +#: sphinx/locale/__init__.py:347 msgid "Note" msgstr "備註" -#: sphinx/locale/__init__.py:205 +#: sphinx/locale/__init__.py:348 msgid "See also" msgstr "也參考" -#: sphinx/locale/__init__.py:206 +#: sphinx/locale/__init__.py:349 msgid "Tip" msgstr "小訣竅" -#: sphinx/locale/__init__.py:207 +#: sphinx/locale/__init__.py:350 msgid "Warning" msgstr "警告" -#: sphinx/locale/__init__.py:211 -#, python-format -msgid "New in version %s" -msgstr "%s 版新加入" - -#: sphinx/locale/__init__.py:212 -#, python-format -msgid "Changed in version %s" -msgstr "%s 版更變" - -#: sphinx/locale/__init__.py:213 -#, python-format -msgid "Deprecated since version %s" -msgstr "%s 版後已棄用" - -#: sphinx/locale/__init__.py:219 -msgid "keyword" -msgstr "關鍵字" - -#: sphinx/locale/__init__.py:220 -msgid "operator" -msgstr "運算子" - -#: sphinx/locale/__init__.py:221 -msgid "object" -msgstr "物件" - -#: sphinx/locale/__init__.py:223 -msgid "statement" -msgstr "陳述式" - -#: sphinx/locale/__init__.py:224 -msgid "built-in function" -msgstr "內建函式" - -#: sphinx/templates/latex/longtable.tex_t:18 sphinx/writers/latex.py:711 +#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 msgid "continued from previous page" msgstr "繼續上一頁" -#: sphinx/templates/latex/longtable.tex_t:24 +#: sphinx/templates/latex/longtable.tex_t:28 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:38 -msgid "Table Of Contents" -msgstr "目錄" +#: 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:150 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: 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 "搜尋" @@ -1120,35 +3076,35 @@ msgstr "可能會很大" msgid "Navigation" msgstr "瀏覽" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" msgstr "在 %(docstitle)s 中搜尋" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:147 msgid "About these documents" msgstr "關於這些文件" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:156 msgid "Copyright" msgstr "版權所有" -#: sphinx/themes/basic/layout.html:198 +#: sphinx/themes/basic/layout.html:201 #, python-format msgid "© Copyright %(copyright)s." msgstr "© 版權所有 %(copyright)s。" -#: sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." msgstr "© 版權所有 %(copyright)s。" -#: sphinx/themes/basic/layout.html:204 +#: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." msgstr "最後更新於 %(last_updated)s。" -#: sphinx/themes/basic/layout.html:207 +#: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using Sphinx " @@ -1176,13 +3132,13 @@ msgstr "下個主題" msgid "next chapter" msgstr "下一章" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "請啟用 Javascript 以開啟搜尋功能。" -#: sphinx/themes/basic/search.html:32 +#: 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" @@ -1190,20 +3146,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "你可以從這裡搜尋文件。輸入搜尋詞至底下的文字框並點擊「搜尋」。注意搜尋功能會自動尋找滿足所有詞的結果。只滿足少部份搜尋詞的頁面將不予顯示在結果清單中。" -#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "搜尋" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:298 +#: sphinx/themes/basic/static/searchtools.js:290 msgid "Search Results" msgstr "搜尋結果" -#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js_t:300 +#: sphinx/themes/basic/static/searchtools.js:292 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -1245,36 +3201,36 @@ msgstr "C API 改變" msgid "Other changes" msgstr "其他改變" -#: sphinx/themes/basic/static/doctools.js_t:193 sphinx/writers/html.py:405 -#: sphinx/writers/html.py:410 sphinx/writers/html5.py:351 -#: sphinx/writers/html5.py:356 +#: 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 msgid "Permalink to this headline" msgstr "本標題的永久連結" -#: sphinx/themes/basic/static/doctools.js_t:199 sphinx/writers/html.py:126 -#: sphinx/writers/html.py:137 sphinx/writers/html5.py:95 -#: sphinx/writers/html5.py:106 +#: 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 msgid "Permalink to this definition" msgstr "本定義的永久連結" -#: sphinx/themes/basic/static/doctools.js_t:232 +#: sphinx/themes/basic/static/doctools.js:234 msgid "Hide Search Matches" msgstr "隱藏符合搜尋" -#: sphinx/themes/basic/static/searchtools.js_t:129 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "搜尋中" -#: sphinx/themes/basic/static/searchtools.js_t:134 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "準備搜尋中…" -#: sphinx/themes/basic/static/searchtools.js_t:302 +#: sphinx/themes/basic/static/searchtools.js:294 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "搜尋完成,共找到 %s 頁面滿足搜尋條件。" -#: sphinx/themes/basic/static/searchtools.js_t:355 +#: sphinx/themes/basic/static/searchtools.js:347 msgid ", in " msgstr " 於 " @@ -1291,68 +3247,223 @@ msgstr "收合側邊欄" msgid "Contents" msgstr "內容" -#: sphinx/transforms/post_transforms/__init__.py:139 +#: sphinx/transforms/__init__.py:258 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:300 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:306 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:340 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:393 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:413 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: 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:169 +#: sphinx/transforms/post_transforms/__init__.py:172 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:175 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/util/docutils.py:202 +#: sphinx/transforms/post_transforms/images.py:94 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:122 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:143 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/docutils.py:281 msgid "when adding directive classes, no additional arguments may be given" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:360 +#: 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:217 +#, 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 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:433 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:47 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#, 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:466 sphinx/writers/html5.py:412 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 msgid "Permalink to this code" msgstr "本原始碼的永久連結" -#: sphinx/writers/html.py:470 sphinx/writers/html5.py:416 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this image" msgstr "本圖片的永久連結" -#: sphinx/writers/html.py:472 sphinx/writers/html5.py:418 +#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 msgid "Permalink to this toctree" msgstr "本目錄的永久連結" -#: sphinx/writers/latex.py:554 +#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:508 msgid "Release" msgstr "發佈" -#: sphinx/writers/latex.py:714 +#: sphinx/writers/latex.py:531 +#, 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 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:667 msgid "continues on next page" msgstr "" -#: sphinx/writers/latex.py:718 +#: 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:768 -#, python-format -msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "未知設定鍵:latex_elements[%r] 將被忽略。" +#: sphinx/writers/latex.py:1013 +msgid "document title is not a single Text node" +msgstr "" -#: sphinx/writers/latex.py:1317 sphinx/writers/manpage.py:275 +#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +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 msgid "Footnotes" msgstr "頁尾" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:713 +#: sphinx/writers/latex.py:1638 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1927 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2606 +#, 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 #, python-format msgid "[image: %s]" msgstr "[圖片:%s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:714 +#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 msgid "[image]" msgstr "[圖片]" + +#: sphinx/writers/texinfo.py:1321 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1412 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1417 +#, python-format +msgid "unknown node type: %r" +msgstr "" diff --git a/sphinx/pycode/__init__.py b/sphinx/pycode/__init__.py index ce04f1d94..d881c247d 100644 --- a/sphinx/pycode/__init__.py +++ b/sphinx/pycode/__init__.py @@ -13,7 +13,7 @@ from __future__ import print_function import re from zipfile import ZipFile -from six import iteritems, BytesIO, StringIO +from six import BytesIO, StringIO from sphinx.errors import PycodeError from sphinx.pycode.parser import Parser @@ -32,7 +32,7 @@ class ModuleAnalyzer: def for_string(cls, string, modname, srcname=''): # type: (unicode, unicode, unicode) -> ModuleAnalyzer if isinstance(string, bytes): - return cls(BytesIO(string), modname, srcname) + return cls(BytesIO(string), modname, srcname) # type: ignore return cls(StringIO(string), modname, srcname, decoded=True) # type: ignore @classmethod @@ -111,7 +111,7 @@ class ModuleAnalyzer: parser.parse() self.attr_docs = {} - for (scope, comment) in iteritems(parser.comments): + for (scope, comment) in parser.comments.items(): if comment: self.attr_docs[scope] = comment.splitlines() + [''] else: diff --git a/sphinx/pycode/parser.py b/sphinx/pycode/parser.py index ca0143f55..559083100 100644 --- a/sphinx/pycode/parser.py +++ b/sphinx/pycode/parser.py @@ -17,7 +17,7 @@ import tokenize from token import NAME, NEWLINE, INDENT, DEDENT, NUMBER, OP, STRING from tokenize import COMMENT, NL -from six import PY2, text_type +from six import text_type if False: # For type annotation @@ -59,10 +59,7 @@ def get_lvar_names(node, self=None): # => TypeError """ if self: - if PY2: - self_id = self.id # type: ignore - else: - self_id = self.arg + self_id = self.arg # type: ignore node_name = node.__class__.__name__ if node_name in ('Index', 'Num', 'Slice', 'Str', 'Subscript'): diff --git a/sphinx/registry.py b/sphinx/registry.py index 132d1d207..09edaf86d 100644 --- a/sphinx/registry.py +++ b/sphinx/registry.py @@ -17,7 +17,7 @@ from types import MethodType from docutils.parsers.rst import Directive from pkg_resources import iter_entry_points -from six import iteritems, itervalues +from six import itervalues from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.domains import ObjType @@ -177,7 +177,7 @@ class SphinxComponentRegistry: domain.directives.update(self.domain_directives.get(domain.name, {})) domain.roles.update(self.domain_roles.get(domain.name, {})) domain.indices.extend(self.domain_indices.get(domain.name, [])) - for name, objtype in iteritems(self.domain_object_types.get(domain.name, {})): + for name, objtype in self.domain_object_types.get(domain.name, {}).items(): domain.add_object_type(name, objtype) yield domain @@ -199,7 +199,7 @@ class SphinxComponentRegistry: directives = self.domain_directives.setdefault(domain, {}) if name in directives and not override: - raise ExtensionError(__('The %r directive is already registered to %d domain') % + 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) @@ -213,7 +213,7 @@ class SphinxComponentRegistry: raise ExtensionError(__('domain %s not yet registered') % domain) roles = self.domain_roles.setdefault(domain, {}) if name in roles and not override: - raise ExtensionError(__('The %r role is already registered to %d domain') % + raise ExtensionError(__('The %r role is already registered to domain %s') % (name, domain)) roles[name] = role @@ -224,7 +224,7 @@ class SphinxComponentRegistry: raise ExtensionError(__('domain %s not yet registered') % domain) indices = self.domain_indices.setdefault(domain, []) if index in indices and not override: - raise ExtensionError(__('The %r index is already registered to %d domain') % + raise ExtensionError(__('The %r index is already registered to domain %s') % (index.name, domain)) indices.append(index) @@ -365,7 +365,7 @@ class SphinxComponentRegistry: def add_translation_handlers(self, node, **kwargs): # type: (nodes.Node, Any) -> None logger.debug('[app] adding translation_handlers: %r, %r', node, kwargs) - for builder_name, handlers in iteritems(kwargs): + for builder_name, handlers in kwargs.items(): translation_handlers = self.translation_handlers.setdefault(builder_name, {}) try: visit, depart = handlers # unpack once for assertion @@ -391,7 +391,7 @@ class SphinxComponentRegistry: # retry with builder.format handlers = self.translation_handlers.get(builder.format, {}) - for name, (visit, depart) in iteritems(handlers): + for name, (visit, depart) in handlers.items(): setattr(translator, 'visit_' + name, MethodType(visit, translator)) if depart: setattr(translator, 'depart_' + name, MethodType(depart, translator)) @@ -512,7 +512,7 @@ class SphinxComponentRegistry: def merge_source_suffix(app, config): # type: (Sphinx, Config) -> None """Merge source_suffix which specified by user and added by extensions.""" - for suffix, filetype in iteritems(app.registry.source_suffix): + for suffix, filetype in app.registry.source_suffix.items(): if suffix not in app.config.source_suffix: app.config.source_suffix[suffix] = filetype elif app.config.source_suffix[suffix] is None: diff --git a/sphinx/roles.py b/sphinx/roles.py index 457c7465a..f50159c66 100644 --- a/sphinx/roles.py +++ b/sphinx/roles.py @@ -12,7 +12,6 @@ import re from docutils import nodes, utils -from six import iteritems from sphinx import addnodes from sphinx.errors import SphinxError @@ -403,12 +402,12 @@ def setup(app): # type: (Sphinx) -> Dict[unicode, Any] from docutils.parsers.rst import roles - for rolename, nodeclass in iteritems(generic_docroles): + for rolename, nodeclass in generic_docroles.items(): generic = roles.GenericRole(rolename, nodeclass) role = roles.CustomRole(rolename, generic, {'classes': [rolename]}) roles.register_local_role(rolename, role) - for rolename, func in iteritems(specific_docroles): + for rolename, func in specific_docroles.items(): roles.register_local_role(rolename, func) return { diff --git a/sphinx/search/__init__.py b/sphinx/search/__init__.py index bf858c646..57102e8fe 100644 --- a/sphinx/search/__init__.py +++ b/sphinx/search/__init__.py @@ -11,7 +11,7 @@ import re from os import path -from six import iteritems, itervalues, text_type, string_types +from six import itervalues, text_type, string_types from six.moves import cPickle as pickle from docutils.nodes import raw, comment, title, Text, NodeVisitor, SkipNode @@ -305,7 +305,7 @@ class IndexBuilder: def load_terms(mapping): # type: (Dict[unicode, Any]) -> Dict[unicode, Set[unicode]] rv = {} - for k, v in iteritems(mapping): + for k, v in mapping.items(): if isinstance(v, int): rv[k] = set([index2fn[v]]) else: @@ -328,7 +328,7 @@ class IndexBuilder: rv = {} # type: Dict[unicode, Dict[unicode, Tuple[int, int, int, unicode]]] otypes = self._objtypes onames = self._objnames - for domainname, domain in sorted(iteritems(self.env.domains)): + for domainname, domain in sorted(self.env.domains.items()): for fullname, dispname, type, docname, anchor, prio in \ sorted(domain.get_objects()): if docname not in fn2index: @@ -364,7 +364,7 @@ class IndexBuilder: # type: (Dict) -> Tuple[Dict[unicode, List[unicode]], Dict[unicode, List[unicode]]] rvs = {}, {} # type: Tuple[Dict[unicode, List[unicode]], Dict[unicode, List[unicode]]] for rv, mapping in zip(rvs, (self._mapping, self._title_mapping)): - for k, v in iteritems(mapping): + for k, v in mapping.items(): if len(v) == 1: fn, = v if fn in fn2index: @@ -383,7 +383,7 @@ class IndexBuilder: objects = self.get_objects(fn2index) # populates _objtypes objtypes = dict((v, k[0] + ':' + k[1]) - for (k, v) in iteritems(self._objtypes)) + 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 6eb972f4f..f28013b0b 100644 --- a/sphinx/search/ja.py +++ b/sphinx/search/ja.py @@ -22,8 +22,6 @@ import re import sys import warnings -from six import iteritems, PY3 - try: import MeCab native_module = True @@ -77,16 +75,12 @@ class MecabSplitter(BaseSplitter): def split(self, input): # type: (unicode) -> List[unicode] - input2 = input if PY3 else input.encode(self.dict_encode) if native_module: - result = self.native.parse(input2) + result = self.native.parse(input) else: result = self.ctypes_libmecab.mecab_sparse_tostr( self.ctypes_mecab, input.encode(self.dict_encode)) - if PY3: - return result.split(' ') - else: - return result.decode(self.dict_encode).split(' ') + return result.split(' ') def init_native(self, options): # type: (Dict) -> None @@ -162,14 +156,14 @@ class JanomeSplitter(BaseSplitter): class DefaultSplitter(BaseSplitter): - patterns_ = dict([(re.compile(pattern), value) for pattern, value in iteritems({ + patterns_ = dict([(re.compile(pattern), value) for pattern, value in { u'[一二三四五六七八九十百千万億兆]': u'M', u'[一-龠々〆ヵヶ]': u'H', u'[ぁ-ん]': u'I', u'[ァ-ヴーア-ン゙ー]': u'K', u'[a-zA-Za-zA-Z]': u'A', u'[0-90-9]': u'N', - })]) + }.items()]) BIAS__ = -332 BC1__ = {u'HH': 6, u'II': 2461, u'KH': 406, u'OH': -1378} BC2__ = {u'AA': -3267, u'AI': 2744, u'AN': -878, u'HH': -4070, u'HM': -1711, @@ -434,7 +428,7 @@ class DefaultSplitter(BaseSplitter): # ctype_ def ctype_(self, char): # type: (unicode) -> unicode - for pattern, value in iteritems(self.patterns_): + for pattern, value in self.patterns_.items(): if pattern.match(char): return value return u'O' diff --git a/sphinx/templates/latex/latex.tex_t b/sphinx/templates/latex/latex.tex_t index 59ced238f..633525551 100644 --- a/sphinx/templates/latex/latex.tex_t +++ b/sphinx/templates/latex/latex.tex_t @@ -51,8 +51,11 @@ <%= makeindex %> \begin{document} <%= shorthandoff %> +\pagestyle{empty} <%= maketitle %> +\pagestyle{plain} <%= tableofcontents %> +\pagestyle{normal} <%= body %> <%= atendofbody %> <%= indices %> diff --git a/sphinx/templates/quickstart/Makefile_t b/sphinx/templates/quickstart/Makefile_t index 3af40947c..7b656dff0 100644 --- a/sphinx/templates/quickstart/Makefile_t +++ b/sphinx/templates/quickstart/Makefile_t @@ -29,8 +29,8 @@ help: @echo " applehelp to make an Apple Help Book" @echo " devhelp to make HTML files and a Devhelp project" @echo " epub to make an epub" - @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" - @echo " latexpdf to make LaTeX files and run them through pdflatex" + @echo " latex to make LaTeX files (you can set PAPER=a4 or PAPER=letter)" + @echo " latexpdf to make LaTeX files and then PDFs out of them" @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" @echo " lualatexpdf to make LaTeX files and run them through lualatex" @echo " xelatexpdf to make LaTeX files and run them through xelatex" diff --git a/sphinx/templates/quickstart/make.bat_t b/sphinx/templates/quickstart/make.bat_t index cd96c0736..004f1f912 100644 --- a/sphinx/templates/quickstart/make.bat_t +++ b/sphinx/templates/quickstart/make.bat_t @@ -30,7 +30,8 @@ if "%1" == "help" ( echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub - echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter + echo. latex to make LaTeX files (you can set PAPER=a4 or PAPER=letter) + echo. latexpdf to make LaTeX files and then PDFs out of them echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files diff --git a/sphinx/testing/path.py b/sphinx/testing/path.py index 585933499..78c3cb7bc 100644 --- a/sphinx/testing/path.py +++ b/sphinx/testing/path.py @@ -9,9 +9,8 @@ import os import shutil import sys -from io import open -from six import PY2, text_type +from six import text_type if False: # For type annotation @@ -25,13 +24,6 @@ class path(text_type): """ Represents a path which behaves like a string. """ - if PY2: - def __new__(cls, s, encoding=FILESYSTEMENCODING, errors='strict'): - # type: (unicode, unicode, unicode) -> path - if isinstance(s, str): - s = s.decode(encoding, errors) - return text_type.__new__(cls, s) - return text_type.__new__(cls, s) # type: ignore @property def parent(self): @@ -161,7 +153,7 @@ class path(text_type): """ if isinstance(text, bytes): text = text.decode(encoding) - with open(self, 'w', encoding=encoding, **kwargs) as f: + with open(self, 'w', encoding=encoding, **kwargs) as f: # type: ignore f.write(text) def text(self, encoding='utf-8', **kwargs): @@ -169,8 +161,7 @@ class path(text_type): """ Returns the text in the file. """ - mode = 'rU' if PY2 else 'r' - with open(self, mode=mode, encoding=encoding, **kwargs) as f: + with open(self, mode='r', encoding=encoding, **kwargs) as f: # type: ignore return f.read() def bytes(self): diff --git a/sphinx/testing/util.py b/sphinx/testing/util.py index ca0efefd5..3e39f3ca8 100644 --- a/sphinx/testing/util.py +++ b/sphinx/testing/util.py @@ -20,6 +20,7 @@ from six import string_types from sphinx import application, locale from sphinx.builders.latex import LaTeXBuilder +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.pycode import ModuleAnalyzer from sphinx.testing.path import path from sphinx.util.osutil import relpath @@ -191,6 +192,8 @@ _unicode_literals_re = re.compile(r'u(".*?")|u(\'.*?\')') def remove_unicode_literals(s): # type: (unicode) -> unicode + warnings.warn('remove_unicode_literals() is deprecated.', + RemovedInSphinx40Warning) return _unicode_literals_re.sub(lambda x: x.group(1) or x.group(2), s) # type: ignore diff --git a/sphinx/texinputs/latexmkjarc b/sphinx/texinputs/latexmkjarc index 93c7fc78c..5b315d6c9 100644 --- a/sphinx/texinputs/latexmkjarc +++ b/sphinx/texinputs/latexmkjarc @@ -5,11 +5,9 @@ sub mendex { my ($source, $basename, $destination) = @_; my $dictfile = $basename . ".dic"; unlink($destination); - if (-f $dictfile) { - system("mendex", "-U", "-f", "-d", $dictfile, "-s", "python.ist", $source); - if ($? > 0) { - print("mendex exited with error code $? (ignored)\n"); - } + system("mendex", "-U", "-f", "-d", $dictfile, "-s", "python.ist", $source); + if ($? > 0) { + print("mendex exited with error code $? (ignored)\n"); } if (!-e $destination) { # create an empty .ind file if nothing diff --git a/sphinx/texinputs/sphinx.sty b/sphinx/texinputs/sphinx.sty index fc75bf316..62d119e02 100644 --- a/sphinx/texinputs/sphinx.sty +++ b/sphinx/texinputs/sphinx.sty @@ -6,7 +6,7 @@ % \NeedsTeXFormat{LaTeX2e}[1995/12/01] -\ProvidesPackage{sphinx}[2018/07/18 v1.8 LaTeX package (Sphinx markup)] +\ProvidesPackage{sphinx}[2018/09/18 v1.8.1 LaTeX package (Sphinx markup)] % provides \ltx@ifundefined % (many packages load ltxcmds: graphicx does for pdftex and lualatex but @@ -499,15 +499,31 @@ \sloppy \hbadness = 5000 % don't print trivial gripes -\pagestyle{empty} % start this way - +% Use \pagestyle{normal} as the primary pagestyle for text. % Redefine the 'normal' header/footer style when using "fancyhdr" package: -% Note: this presupposes "twoside". If "oneside" class option, there will be warnings. -\ltx@ifundefined{fancyhf}{}{ - % Use \pagestyle{normal} as the primary pagestyle for text. - \fancypagestyle{normal}{ +\@ifpackageloaded{fancyhdr}{% + \ltx@ifundefined{c@chapter} + {% no \chapter, "howto" (non-Japanese) docclass + \fancypagestyle{plain}{ \fancyhf{} -% (for \py@HeaderFamily cf "TITLES") + \fancyfoot[C]{{\py@HeaderFamily\thepage}} + \renewcommand{\headrulewidth}{0pt} + \renewcommand{\footrulewidth}{0pt} + } + % Same as 'plain', this way we can use it in template + % FIXME: shouldn't this have a running header with Name and Release like 'manual'? + \fancypagestyle{normal}{ + \fancyhf{} + \fancyfoot[C]{{\py@HeaderFamily\thepage}} + \renewcommand{\headrulewidth}{0pt} + \renewcommand{\footrulewidth}{0pt} + } + }% + {% classes with \chapter command + \fancypagestyle{normal}{ + \fancyhf{} + % FIXME: this presupposes "twoside". + % If "oneside" class option, there are warnings in LaTeX log. \fancyfoot[LE,RO]{{\py@HeaderFamily\thepage}} \fancyfoot[LO]{{\py@HeaderFamily\nouppercase{\rightmark}}} \fancyfoot[RE]{{\py@HeaderFamily\nouppercase{\leftmark}}} @@ -517,17 +533,24 @@ % define chaptermark with \@chappos when \@chappos is available for Japanese \ltx@ifundefined{@chappos}{} {\def\chaptermark##1{\markboth{\@chapapp\space\thechapter\space\@chappos\space ##1}{}}} - } + } % Update the plain style so we get the page number & footer line, % but not a chapter or section title. This is to keep the first - % page of a chapter and the blank page between chapters `clean.' - \fancypagestyle{plain}{ + % page of a chapter `clean.' + \fancypagestyle{plain}{ \fancyhf{} \fancyfoot[LE,RO]{{\py@HeaderFamily\thepage}} \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0.4pt} + } + } + } + {% no fancyhdr: memoir class + % Provide default for 'normal' style simply as an alias of 'plain' style + % This way we can use \pagestyle{normal} in LaTeX template + \def\ps@normal{\ps@plain} + % Users of memoir class are invited to redefine 'normal' style in preamble } -} % geometry \ifx\kanjiskip\@undefined diff --git a/sphinx/texinputs/sphinxhowto.cls b/sphinx/texinputs/sphinxhowto.cls index 8b0530af7..64c2feb64 100644 --- a/sphinx/texinputs/sphinxhowto.cls +++ b/sphinx/texinputs/sphinxhowto.cls @@ -3,7 +3,7 @@ % \NeedsTeXFormat{LaTeX2e}[1995/12/01] -\ProvidesClass{sphinxhowto}[2017/03/26 v1.6 Document class (Sphinx HOWTO)] +\ProvidesClass{sphinxhowto}[2018/09/18 v1.8.1 Document class (Sphinx HOWTO)] % 'oneside' option overriding the 'twoside' default \newif\if@oneside @@ -66,12 +66,7 @@ \vspace{12pt} } -\@ifundefined{fancyhf}{ - \pagestyle{plain}}{ - \pagestyle{normal}} % start this way; change for -\pagenumbering{arabic} % ToC & chapters - -\thispagestyle{empty} +\pagenumbering{arabic} % Fix the bibliography environment to add an entry to the Table of % Contents. diff --git a/sphinx/texinputs/sphinxmanual.cls b/sphinx/texinputs/sphinxmanual.cls index 94c71d742..ef8ce01a1 100644 --- a/sphinx/texinputs/sphinxmanual.cls +++ b/sphinx/texinputs/sphinxmanual.cls @@ -3,7 +3,7 @@ % \NeedsTeXFormat{LaTeX2e}[1995/12/01] -\ProvidesClass{sphinxmanual}[2017/03/26 v1.6 Document class (Sphinx manual)] +\ProvidesClass{sphinxmanual}[2018/09/18 v1.8.1 Document class (Sphinx manual)] % chapters starting at odd pages (overridden by 'openany' document option) \PassOptionsToClass{openright}{\sphinxdocclass} @@ -75,7 +75,6 @@ \newcommand{\sphinxtableofcontents}{% \pagenumbering{roman}% - \pagestyle{plain}% \begingroup \parskip \z@skip \tableofcontents @@ -83,7 +82,6 @@ % before resetting page counter, let's do the right thing. \if@openright\cleardoublepage\else\clearpage\fi \pagenumbering{arabic}% - \ifdefined\fancyhf\pagestyle{normal}\fi } % This is needed to get the width of the section # area wide enough in the diff --git a/sphinx/theming.py b/sphinx/theming.py index 8a389c767..efe9673d4 100644 --- a/sphinx/theming.py +++ b/sphinx/theming.py @@ -16,7 +16,6 @@ from os import path from zipfile import ZipFile import pkg_resources -from six import iteritems from six.moves import configparser from sphinx import package_dir @@ -129,7 +128,7 @@ class Theme: except configparser.NoSectionError: pass - for option, value in iteritems(overrides): + for option, value in overrides.items(): if option not in options: logger.warning(__('unsupported theme option %r given') % option) else: @@ -174,7 +173,7 @@ class HTMLThemeFactory: # type: () -> None """Load built-in themes.""" themes = self.find_themes(path.join(package_dir, 'themes')) - for name, theme in iteritems(themes): + for name, theme in themes.items(): self.themes[name] = theme def load_additional_themes(self, theme_paths): @@ -183,7 +182,7 @@ class HTMLThemeFactory: for theme_path in theme_paths: abs_theme_path = path.abspath(path.join(self.app.confdir, theme_path)) themes = self.find_themes(abs_theme_path) - for name, theme in iteritems(themes): + for name, theme in themes.items(): self.themes[name] = theme def load_extra_theme(self, name): diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index ee584509f..814abf16c 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -314,8 +314,9 @@ def get_module_source(modname): filename += 'w' elif not (lfilename.endswith('.py') or lfilename.endswith('.pyw')): raise PycodeError('source is not a .py file: %r' % filename) - elif '.egg' in filename: - eggpath, _ = re.split('(?<=\\.egg)/', filename) + elif ('.egg' + os.path.sep) in filename: + pat = '(?<=\\.egg)' + re.escape(os.path.sep) + eggpath, _ = re.split(pat, filename, 1) if path.isfile(eggpath): return 'file', filename @@ -676,8 +677,7 @@ def xmlname_checker(): [u'\u2C00', u'\u2FEF'], [u'\u3001', u'\uD7FF'], [u'\uF900', u'\uFDCF'], [u'\uFDF0', u'\uFFFD']] - if sys.version_info.major == 3: - name_start_chars.append([u'\U00010000', u'\U000EFFFF']) + name_start_chars.append([u'\U00010000', u'\U000EFFFF']) name_chars = [ u"\\-", u"\\.", [u'0', u'9'], u'\u00B7', [u'\u0300', u'\u036F'], diff --git a/sphinx/util/compat.py b/sphinx/util/compat.py index 9fa0d56ad..1f3b0f445 100644 --- a/sphinx/util/compat.py +++ b/sphinx/util/compat.py @@ -15,7 +15,7 @@ import sys import warnings from docutils.utils import get_source_line -from six import string_types, iteritems +from six import string_types from sphinx import addnodes from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning @@ -35,7 +35,7 @@ def deprecate_source_parsers(app, config): warnings.warn('The config variable "source_parsers" is deprecated. ' 'Please use app.add_source_parser() API instead.', RemovedInSphinx30Warning) - for suffix, parser in iteritems(config.source_parsers): + for suffix, parser in config.source_parsers.items(): if isinstance(parser, string_types): parser = import_object(parser, 'source parser') # type: ignore app.add_source_parser(suffix, parser) diff --git a/sphinx/util/docfields.py b/sphinx/util/docfields.py index 1140c5457..d0899130e 100644 --- a/sphinx/util/docfields.py +++ b/sphinx/util/docfields.py @@ -305,7 +305,8 @@ class DocFieldTransformer: entries.append(field) # but if this has a type then we can at least link it - if typedesc and is_typefield and content: + if (typedesc and is_typefield and content and + len(content) == 1 and isinstance(content[0], nodes.Text)): target = content[0].astext() xrefs = typedesc.make_xrefs( typedesc.typerolename, @@ -318,7 +319,8 @@ class DocFieldTransformer: fieldbody.children[0].extend(xrefs) else: fieldbody.clear() - fieldbody.extend(xrefs) + fieldbody += nodes.paragraph() + fieldbody[0].extend(xrefs) continue diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py index 3d957767b..f1fd66167 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -10,7 +10,6 @@ """ from __future__ import absolute_import -import codecs import os import re import types @@ -314,7 +313,7 @@ class SphinxFileOutput(FileOutput): # type: (unicode) -> unicode if (self.destination_path and self.autoclose and 'b' not in self.mode and self.overwrite_if_changed and os.path.exists(self.destination_path)): - with codecs.open(self.destination_path, encoding=self.encoding) as f: + with open(self.destination_path, encoding=self.encoding) as f: # type: ignore # skip writing: content not changed if f.read() == data: return data diff --git a/sphinx/util/fileutil.py b/sphinx/util/fileutil.py index fcbc8abe6..85b6d4f47 100644 --- a/sphinx/util/fileutil.py +++ b/sphinx/util/fileutil.py @@ -10,7 +10,6 @@ """ from __future__ import absolute_import -import codecs import os import posixpath @@ -49,10 +48,10 @@ def copy_asset_file(source, destination, context=None, renderer=None): from sphinx.util.template import SphinxRenderer renderer = SphinxRenderer() - with codecs.open(source, 'r', encoding='utf-8') as fsrc: # type: ignore + with open(source, 'r', encoding='utf-8') as fsrc: # type: ignore if destination.lower().endswith('_t'): destination = destination[:-2] - with codecs.open(destination, 'w', encoding='utf-8') as fdst: # type: ignore + with open(destination, 'w', encoding='utf-8') as fdst: # type: ignore fdst.write(renderer.render_string(fsrc.read(), context)) else: copyfile(source, destination) diff --git a/sphinx/util/i18n.py b/sphinx/util/i18n.py index edaebebda..2b557ec93 100644 --- a/sphinx/util/i18n.py +++ b/sphinx/util/i18n.py @@ -9,7 +9,6 @@ :license: BSD, see LICENSE for details. """ import gettext -import io import os import re import warnings @@ -69,14 +68,14 @@ class CatalogInfo(LocaleFileInfoBase): def write_mo(self, locale): # type: (unicode) -> None - with io.open(self.po_path, 'rt', encoding=self.charset) as file_po: + with open(self.po_path, 'rt', encoding=self.charset) as file_po: # type: ignore try: po = read_po(file_po, locale) except Exception as exc: logger.warning(__('reading error: %s, %s'), self.po_path, exc) return - with io.open(self.mo_path, 'wb') as file_mo: + with open(self.mo_path, 'wb') as file_mo: try: write_mo(file_mo, po) except Exception as exc: diff --git a/sphinx/util/images.py b/sphinx/util/images.py index 321768670..e4f31198d 100644 --- a/sphinx/util/images.py +++ b/sphinx/util/images.py @@ -12,12 +12,15 @@ from __future__ import absolute_import import base64 import imghdr +import warnings from collections import OrderedDict from os import path from typing import NamedTuple import imagesize -from six import PY3, BytesIO, iteritems +from six import BytesIO, text_type + +from sphinx.deprecation import RemovedInSphinx30Warning try: from PIL import Image # check for the Python Imaging Library @@ -31,9 +34,6 @@ if False: # For type annotation from typing import Dict, IO, List, Tuple # NOQA -if PY3: - unicode = str # special alias for static typing... - mime_suffixes = OrderedDict([ ('.gif', 'image/gif'), ('.jpg', 'image/jpeg'), @@ -43,8 +43,8 @@ mime_suffixes = OrderedDict([ ('.svgz', 'image/svg+xml'), ]) # type: Dict[unicode, unicode] -DataURI = NamedTuple('DataURI', [('mimetype', unicode), - ('charset', unicode), +DataURI = NamedTuple('DataURI', [('mimetype', text_type), + ('charset', text_type), ('data', bytes)]) @@ -70,7 +70,7 @@ def get_image_size(filename): def guess_mimetype_for_stream(stream, default=None): # type: (IO, unicode) -> unicode - imgtype = imghdr.what(stream) + imgtype = imghdr.what(stream) # type: ignore if imgtype: return 'image/' + imgtype else: @@ -83,6 +83,8 @@ def guess_mimetype(filename='', content=None, default=None): if ext in mime_suffixes: return mime_suffixes[ext] elif content: + warnings.warn('The content argument of guess_mimetype() is deprecated.', + RemovedInSphinx30Warning) return guess_mimetype_for_stream(BytesIO(content), default=default) elif path.exists(filename): with open(filename, 'rb') as f: @@ -93,7 +95,7 @@ def guess_mimetype(filename='', content=None, default=None): def get_image_extension(mimetype): # type: (unicode) -> unicode - for ext, _mimetype in iteritems(mime_suffixes): + for ext, _mimetype in mime_suffixes.items(): if mimetype == _mimetype: return ext @@ -136,4 +138,4 @@ def test_svg(h, f): # install test_svg() to imghdr # refs: https://docs.python.org/3.6/library/imghdr.html#imghdr.tests -imghdr.tests.append(test_svg) +imghdr.tests.append(test_svg) # type: ignore diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index 211703e07..0d7503088 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -10,14 +10,14 @@ """ from __future__ import absolute_import +import enum import inspect import re import sys import typing -from collections import OrderedDict from functools import partial -from six import PY2, PY3, StringIO, binary_type, string_types, itervalues +from six import StringIO, binary_type, string_types, itervalues from six.moves import builtins from sphinx.util import force_decode @@ -33,112 +33,73 @@ logger = logging.getLogger(__name__) memory_address_re = re.compile(r' at 0x[0-9a-f]{8,16}(?=>)', re.IGNORECASE) -if PY3: - # Copied from the definition of inspect.getfullargspec from Python master, - # and modified to remove the use of special flags that break decorated - # callables and bound methods in the name of backwards compatibility. Used - # under the terms of PSF license v2, which requires the above statement - # and the following: - # - # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, - # 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 Python Software - # Foundation; All Rights Reserved - def getargspec(func): - """Like inspect.getfullargspec but supports bound methods, and wrapped - methods.""" - # On 3.5+, signature(int) or similar raises ValueError. On 3.4, it - # succeeds with a bogus signature. We want a TypeError uniformly, to - # match historical behavior. - if (isinstance(func, type) and - is_builtin_class_method(func, "__new__") and - is_builtin_class_method(func, "__init__")): - raise TypeError( - "can't compute signature for built-in type {}".format(func)) +# Copied from the definition of inspect.getfullargspec from Python master, +# and modified to remove the use of special flags that break decorated +# callables and bound methods in the name of backwards compatibility. Used +# under the terms of PSF license v2, which requires the above statement +# and the following: +# +# Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, +# 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 Python Software +# Foundation; All Rights Reserved +def getargspec(func): + """Like inspect.getfullargspec but supports bound methods, and wrapped + methods.""" + # On 3.5+, signature(int) or similar raises ValueError. On 3.4, it + # succeeds with a bogus signature. We want a TypeError uniformly, to + # match historical behavior. + if (isinstance(func, type) and + is_builtin_class_method(func, "__new__") and + is_builtin_class_method(func, "__init__")): + raise TypeError( + "can't compute signature for built-in type {}".format(func)) - sig = inspect.signature(func) + sig = inspect.signature(func) # type: ignore - args = [] - varargs = None - varkw = None - kwonlyargs = [] - defaults = () - annotations = {} - defaults = () - kwdefaults = {} + args = [] + varargs = None + varkw = None + kwonlyargs = [] + defaults = () + annotations = {} + defaults = () + kwdefaults = {} - if sig.return_annotation is not sig.empty: - annotations['return'] = sig.return_annotation + if sig.return_annotation is not sig.empty: + annotations['return'] = sig.return_annotation - for param in sig.parameters.values(): - kind = param.kind - name = param.name + for param in sig.parameters.values(): + kind = param.kind + name = param.name - if kind is inspect.Parameter.POSITIONAL_ONLY: - args.append(name) - elif kind is inspect.Parameter.POSITIONAL_OR_KEYWORD: - args.append(name) - if param.default is not param.empty: - defaults += (param.default,) - elif kind is inspect.Parameter.VAR_POSITIONAL: - varargs = name - elif kind is inspect.Parameter.KEYWORD_ONLY: - kwonlyargs.append(name) - if param.default is not param.empty: - kwdefaults[name] = param.default - elif kind is inspect.Parameter.VAR_KEYWORD: - varkw = name + if kind is inspect.Parameter.POSITIONAL_ONLY: # type: ignore + args.append(name) + elif kind is inspect.Parameter.POSITIONAL_OR_KEYWORD: # type: ignore + args.append(name) + if param.default is not param.empty: + defaults += (param.default,) # type: ignore + elif kind is inspect.Parameter.VAR_POSITIONAL: # type: ignore + varargs = name + elif kind is inspect.Parameter.KEYWORD_ONLY: # type: ignore + kwonlyargs.append(name) + if param.default is not param.empty: + kwdefaults[name] = param.default + elif kind is inspect.Parameter.VAR_KEYWORD: # type: ignore + varkw = name - if param.annotation is not param.empty: - annotations[name] = param.annotation + if param.annotation is not param.empty: + annotations[name] = param.annotation - if not kwdefaults: - # compatibility with 'func.__kwdefaults__' - kwdefaults = None + if not kwdefaults: + # compatibility with 'func.__kwdefaults__' + kwdefaults = None - if not defaults: - # compatibility with 'func.__defaults__' - defaults = None + if not defaults: + # compatibility with 'func.__defaults__' + defaults = None - return inspect.FullArgSpec(args, varargs, varkw, defaults, - kwonlyargs, kwdefaults, annotations) - -else: # 2.7 - def getargspec(func): - # type: (Any) -> Any - """Like inspect.getargspec but supports functools.partial as well.""" - if inspect.ismethod(func): - func = func.__func__ - parts = 0, () # type: Tuple[int, Tuple[unicode, ...]] - if type(func) is partial: - keywords = func.keywords - if keywords is None: - keywords = {} - parts = len(func.args), keywords.keys() - func = func.func - if not inspect.isfunction(func): - raise TypeError('%r is not a Python function' % func) - args, varargs, varkw = inspect.getargs(func.__code__) - func_defaults = func.__defaults__ - if func_defaults is None: - func_defaults = [] - else: - func_defaults = list(func_defaults) - if parts[0]: - args = args[parts[0]:] - if parts[1]: - for arg in parts[1]: - i = args.index(arg) - len(args) # type: ignore - del args[i] - try: - del func_defaults[i] - except IndexError: - pass - return inspect.ArgSpec(args, varargs, varkw, func_defaults) # type: ignore - -try: - import enum -except ImportError: - enum = None + return inspect.FullArgSpec(args, varargs, varkw, defaults, # type: ignore + kwonlyargs, kwdefaults, annotations) def isenumclass(x): @@ -275,18 +236,15 @@ def object_description(object): except TypeError: pass # Cannot sort set values, fall back to generic repr else: - template = "{%s}" if PY3 else "set([%s])" - return template % ", ".join(object_description(x) - for x in sorted_values) + return "{%s}" % ", ".join(object_description(x) for x in sorted_values) if isinstance(object, frozenset): try: sorted_values = sorted(object) except TypeError: pass # Cannot sort frozenset values, fall back to generic repr else: - template = "frozenset({%s})" if PY3 else "frozenset([%s])" - return template % ", ".join(object_description(x) - for x in sorted_values) + return "frozenset({%s})" % ", ".join(object_description(x) + for x in sorted_values) try: s = repr(object) except Exception: @@ -351,20 +309,17 @@ class Signature: self.has_retval = has_retval self.partialmethod_with_noargs = False - if PY3: - try: - self.signature = inspect.signature(subject) - except IndexError: - # Until python 3.6.4, cpython has been crashed on inspection for - # partialmethods not having any arguments. - # https://bugs.python.org/issue33009 - if hasattr(subject, '_partialmethod'): - self.signature = None - self.partialmethod_with_noargs = True - else: - raise - else: - self.argspec = getargspec(subject) + try: + self.signature = inspect.signature(subject) # type: ignore + except IndexError: + # Until python 3.6.4, cpython has been crashed on inspection for + # partialmethods not having any arguments. + # https://bugs.python.org/issue33009 + if hasattr(subject, '_partialmethod'): + self.signature = None + self.partialmethod_with_noargs = True + else: + raise try: self.annotations = typing.get_type_hints(subject) # type: ignore @@ -373,60 +328,39 @@ class Signature: # python 3.5.2 raises ValueError for partial objects. self.annotations = {} else: - logger.warning('Invalid type annotation found on %r. Ingored: %r', + logger.warning('Invalid type annotation found on %r. Ignored: %r', subject, exc) self.annotations = {} if bound_method: # client gives a hint that the subject is a bound method - if PY3 and inspect.ismethod(subject): + if inspect.ismethod(subject): # inspect.signature already considers the subject is bound method. # So it is not need to skip first argument. self.skip_first_argument = False else: self.skip_first_argument = True else: - if PY3: - # inspect.signature recognizes type of method properly without any hints - self.skip_first_argument = False - else: - # check the subject is bound method or not - self.skip_first_argument = inspect.ismethod(subject) and subject.__self__ # type: ignore # NOQA + # inspect.signature recognizes type of method properly without any hints + self.skip_first_argument = False @property def parameters(self): # type: () -> Dict - if PY3: - if self.partialmethod_with_noargs: - return {} - else: - return self.signature.parameters + if self.partialmethod_with_noargs: + return {} else: - params = OrderedDict() # type: Dict - positionals = len(self.argspec.args) - len(self.argspec.defaults) - for i, arg in enumerate(self.argspec.args): - if i < positionals: - params[arg] = Parameter(arg) - else: - default = self.argspec.defaults[i - positionals] - params[arg] = Parameter(arg, default=default) - if self.argspec.varargs: - params[self.argspec.varargs] = Parameter(self.argspec.varargs, - Parameter.VAR_POSITIONAL) - if self.argspec.keywords: - params[self.argspec.keywords] = Parameter(self.argspec.keywords, - Parameter.VAR_KEYWORD) - return params + return self.signature.parameters @property def return_annotation(self): # type: () -> Any - if PY3 and self.signature: + if self.signature: if self.has_retval: return self.signature.return_annotation else: - return inspect.Parameter.empty + return inspect.Parameter.empty # type: ignore else: return None @@ -477,7 +411,7 @@ class Signature: args.append(arg.getvalue()) last_kind = param.kind - if PY2 or self.return_annotation is inspect.Parameter.empty: + if self.return_annotation is inspect.Parameter.empty: # type: ignore return '(%s)' % ', '.join(args) else: if 'return' in self.annotations: @@ -648,108 +582,6 @@ class Signature: return qualname -if sys.version_info >= (3, 5): - _getdoc = inspect.getdoc -else: - # code copied from the inspect.py module of the standard library - # of Python 3.5 - - def _findclass(func): - # type: (Any) -> Any - cls = sys.modules.get(func.__module__) - if cls is None: - return None - if hasattr(func, 'im_class'): - cls = func.im_class - else: - for name in func.__qualname__.split('.')[:-1]: - cls = getattr(cls, name) - if not inspect.isclass(cls): - return None - return cls - - def _finddoc(obj): - # type: (Any) -> unicode - if inspect.isclass(obj): - for base in obj.__mro__: - if base is not object: - try: - doc = base.__doc__ - except AttributeError: - continue - if doc is not None: - return doc - return None - - if inspect.ismethod(obj) and getattr(obj, '__self__', None): - name = obj.__func__.__name__ - self = obj.__self__ - if (inspect.isclass(self) and - getattr(getattr(self, name, None), '__func__') - is obj.__func__): - # classmethod - cls = self - else: - cls = self.__class__ - elif inspect.isfunction(obj) or inspect.ismethod(obj): - name = obj.__name__ - cls = _findclass(obj) - if cls is None or getattr(cls, name) != obj: - return None - elif inspect.isbuiltin(obj): - name = obj.__name__ - self = obj.__self__ - if (inspect.isclass(self) and - self.__qualname__ + '.' + name == obj.__qualname__): - # classmethod - cls = self - else: - cls = self.__class__ - # Should be tested before isdatadescriptor(). - elif isinstance(obj, property): - func = obj.fget - name = func.__name__ - cls = _findclass(func) - if cls is None or getattr(cls, name) is not obj: - return None - elif inspect.ismethoddescriptor(obj) or inspect.isdatadescriptor(obj): - name = obj.__name__ - cls = obj.__objclass__ - if getattr(cls, name) is not obj: - return None - else: - return None - - for base in cls.__mro__: - try: - doc = getattr(base, name).__doc__ - except AttributeError: - continue - if doc is not None: - return doc - return None - - def _getdoc(object): - # type: (Any) -> unicode - """Get the documentation string for an object. - - All tabs are expanded to spaces. To clean up docstrings that are - indented to line up with blocks of code, any whitespace than can be - uniformly removed from the second line onwards is removed.""" - try: - doc = object.__doc__ - except AttributeError: - return None - if doc is None: - try: - doc = _finddoc(object) - except (AttributeError, TypeError): - return None - if not isinstance(doc, str): - return None - return inspect.cleandoc(doc) - - def getdoc(obj, attrgetter=safe_getattr, allow_inherited=False): # type: (Any, Callable, bool) -> unicode """Get the docstring for the object. @@ -763,6 +595,6 @@ def getdoc(obj, attrgetter=safe_getattr, allow_inherited=False): if ispartial(obj) and doc == obj.__class__.__doc__: return getdoc(obj.func) elif doc is None and allow_inherited: - doc = _getdoc(obj) + doc = inspect.getdoc(obj) return doc diff --git a/sphinx/util/inventory.py b/sphinx/util/inventory.py index 29bd872a7..58ad8de33 100644 --- a/sphinx/util/inventory.py +++ b/sphinx/util/inventory.py @@ -12,7 +12,7 @@ import os import re import zlib -from six import PY3 +from six import text_type from sphinx.util import logging @@ -22,10 +22,7 @@ if False: from sphinx.builders import Builder # NOQA from sphinx.environment import BuildEnvironment # NOQA - if PY3: - unicode = str - - Inventory = Dict[unicode, Dict[unicode, Tuple[unicode, unicode, unicode, unicode]]] + Inventory = Dict[text_type, Dict[text_type, Tuple[text_type, text_type, text_type, text_type]]] # NOQA BUFSIZE = 16 * 1024 diff --git a/sphinx/util/jsdump.py b/sphinx/util/jsdump.py index 6776691cf..17865f956 100644 --- a/sphinx/util/jsdump.py +++ b/sphinx/util/jsdump.py @@ -12,7 +12,7 @@ import re -from six import iteritems, integer_types, string_types +from six import integer_types, string_types from sphinx.util.pycompat import u @@ -102,7 +102,7 @@ def dumps(obj, key=False): return '{%s}' % ','.join(sorted('%s:%s' % ( dumps(key, True), dumps(value) - ) for key, value in iteritems(obj))) + ) for key, value in obj.items())) elif isinstance(obj, set): return '[%s]' % ','.join(sorted(dumps(x) for x in obj)) elif isinstance(obj, (tuple, list)): diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py index 0875a8f5c..e7aecdc97 100644 --- a/sphinx/util/logging.py +++ b/sphinx/util/logging.py @@ -17,7 +17,6 @@ from contextlib import contextmanager from docutils import nodes from docutils.utils import get_source_line -from six import PY2, StringIO from sphinx.errors import SphinxWarning from sphinx.util.console import colorize @@ -162,28 +161,7 @@ class WarningStreamHandler(logging.StreamHandler): pass -class NewLineStreamHandlerPY2(logging.StreamHandler): - """StreamHandler which switches line terminator by record.nonl flag.""" - - def emit(self, record): - # type: (logging.LogRecord) -> None - try: - self.acquire() - stream = self.stream - if getattr(record, 'nonl', False): - # remove return code forcely when nonl=True - self.stream = StringIO() - super(NewLineStreamHandlerPY2, self).emit(record) - stream.write(self.stream.getvalue()[:-1]) - stream.flush() - else: - super(NewLineStreamHandlerPY2, self).emit(record) - finally: - self.stream = stream - self.release() - - -class NewLineStreamHandlerPY3(logging.StreamHandler): +class NewLineStreamHandler(logging.StreamHandler): """StreamHandler which switches line terminator by record.nonl flag.""" def emit(self, record): @@ -193,18 +171,12 @@ class NewLineStreamHandlerPY3(logging.StreamHandler): if getattr(record, 'nonl', False): # skip appending terminator when nonl=True self.terminator = '' - super(NewLineStreamHandlerPY3, self).emit(record) + super(NewLineStreamHandler, self).emit(record) finally: self.terminator = '\n' self.release() -if PY2: - NewLineStreamHandler = NewLineStreamHandlerPY2 -else: - NewLineStreamHandler = NewLineStreamHandlerPY3 - - class MemoryHandler(logging.handlers.BufferingHandler): """Handler buffering all logs.""" diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py index ab1cf4801..38a986f6b 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -13,7 +13,6 @@ from __future__ import print_function import contextlib import errno import filecmp -import locale import os import re import shutil @@ -23,7 +22,7 @@ import warnings from io import BytesIO, StringIO from os import path -from six import PY2, PY3, text_type +from six import text_type from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning @@ -37,9 +36,6 @@ ENOENT = getattr(errno, 'ENOENT', 0) EPIPE = getattr(errno, 'EPIPE', 0) EINVAL = getattr(errno, 'EINVAL', 0) -if PY3: - unicode = str # special alias for static typing... - # SEP separates path elements in the canonical file names # # Define SEP as a manifest constant, not so much because we expect it to change @@ -195,19 +191,13 @@ def ustrftime(format, *args): if source_date_epoch is not None: time_struct = time.gmtime(float(source_date_epoch)) args = [time_struct] # type: ignore - if PY2: - # if a locale is set, the time strings are encoded in the encoding - # given by LC_TIME; if that is available, use it - enc = locale.getlocale(locale.LC_TIME)[1] or 'utf-8' - return time.strftime(text_type(format).encode(enc), *args).decode(enc) - else: # Py3 - # 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') + # On Windows, time.strftime() and Unicode characters will raise UnicodeEncodeError. + # https://bugs.python.org/issue8304 + try: + return time.strftime(format, *args) # type: ignore + except UnicodeEncodeError: + r = time.strftime(format.encode('unicode-escape').decode(), *args) # type: ignore + return r.encode().decode('unicode-escape') def relpath(path, start=os.curdir): @@ -235,7 +225,7 @@ def abspath(pathdir): try: pathdir = pathdir.decode(fs_encoding) except UnicodeDecodeError: - raise UnicodeDecodeError('multibyte filename not supported on ' + raise UnicodeDecodeError('multibyte filename not supported on ' # type: ignore 'this filesystem encoding ' '(%r)' % fs_encoding) return pathdir diff --git a/sphinx/util/parallel.py b/sphinx/util/parallel.py index 95ebc1406..8b3edd314 100644 --- a/sphinx/util/parallel.py +++ b/sphinx/util/parallel.py @@ -15,8 +15,6 @@ import time import traceback from math import sqrt -from six import iteritems - try: import multiprocessing except ImportError: @@ -115,7 +113,7 @@ class ParallelTasks: def _join_one(self): # type: () -> None - for tid, pipe in iteritems(self._precvs): + for tid, pipe in self._precvs.items(): if pipe.poll(): exc, logs, result = pipe.recv() if exc: diff --git a/sphinx/util/pycompat.py b/sphinx/util/pycompat.py index dc5a666b7..a33a832c8 100644 --- a/sphinx/util/pycompat.py +++ b/sphinx/util/pycompat.py @@ -9,10 +9,12 @@ :license: BSD, see LICENSE for details. """ -import codecs import sys +from html import escape as htmlescape # NOQA +from io import TextIOWrapper # NOQA +from textwrap import indent # type: ignore # NOQA -from six import PY3, text_type, exec_ +from six import text_type, exec_ if False: # For type annotation @@ -25,114 +27,51 @@ NoneType = type(None) # Python 2/3 compatibility # prefix for Unicode strings -if PY3: - u = '' -else: - u = 'u' - - -# TextIOWrapper -if PY3: - from io import TextIOWrapper -else: - def TextIOWrapper(stream, encoding): - # type: (file, str) -> Any - return codecs.lookup(encoding or 'ascii')[2](stream) +u = '' # sys_encoding: some kind of default system encoding; should be used with # a lenient error handler -if PY3: - sys_encoding = sys.getdefaultencoding() -else: - sys_encoding = __import__('locale').getpreferredencoding() +sys_encoding = sys.getdefaultencoding() # terminal_safe(): safely encode a string for printing to the terminal -if PY3: - def terminal_safe(s): - # type: (unicode) -> unicode - return s.encode('ascii', 'backslashreplace').decode('ascii') -else: - def terminal_safe(s): - # type: (unicode) -> unicode - return s.encode('ascii', 'backslashreplace') +def terminal_safe(s): + # type: (unicode) -> unicode + return s.encode('ascii', 'backslashreplace').decode('ascii') # convert_with_2to3(): -if PY3: - # support for running 2to3 over config files - def convert_with_2to3(filepath): - # type: (unicode) -> unicode - from lib2to3.refactor import RefactoringTool, get_fixers_from_package - from lib2to3.pgen2.parse import ParseError - fixers = get_fixers_from_package('lib2to3.fixes') - refactoring_tool = RefactoringTool(fixers) - source = refactoring_tool._read_python_source(filepath)[0] - try: - tree = refactoring_tool.refactor_string(source, 'conf.py') - except ParseError as err: - # do not propagate lib2to3 exceptions - lineno, offset = err.context[1] - # try to match ParseError details with SyntaxError details - raise SyntaxError(err.msg, (filepath, lineno, offset, err.value)) - return text_type(tree) -else: - # no need to refactor on 2.x versions - convert_with_2to3 = None +# support for running 2to3 over config files +def convert_with_2to3(filepath): + # type: (unicode) -> unicode + from lib2to3.refactor import RefactoringTool, get_fixers_from_package + from lib2to3.pgen2.parse import ParseError + fixers = get_fixers_from_package('lib2to3.fixes') + refactoring_tool = RefactoringTool(fixers) + source = refactoring_tool._read_python_source(filepath)[0] + try: + tree = refactoring_tool.refactor_string(source, 'conf.py') + except ParseError as err: + # do not propagate lib2to3 exceptions + lineno, offset = err.context[1] + # try to match ParseError details with SyntaxError details + raise SyntaxError(err.msg, (filepath, lineno, offset, err.value)) + return text_type(tree) -# htmlescape() -if PY3: - from html import escape as htmlescape -else: - from cgi import escape as htmlescape # NOQA +class UnicodeMixin: + """Mixin class to handle defining the proper __str__/__unicode__ + methods in Python 2 or 3.""" - -# UnicodeMixin -if PY3: - class UnicodeMixin: - """Mixin class to handle defining the proper __str__/__unicode__ - methods in Python 2 or 3.""" - - def __str__(self): - return self.__unicode__() -else: - class UnicodeMixin: - """Mixin class to handle defining the proper __str__/__unicode__ - methods in Python 2 or 3.""" - - def __str__(self): - # type: () -> str - return self.__unicode__().encode('utf8') # type: ignore - - -# indent() -if PY3: - from textwrap import indent -else: - # backport from python3 - def indent(text, prefix, predicate=None): - # type: (unicode, unicode, Callable) -> unicode - if predicate is None: - def predicate(line): - # type: (unicode) -> unicode - return line.strip() - - def prefixed_lines(): - # type: () -> Generator - for line in text.splitlines(True): - yield (prefix + line if predicate(line) else line) - return ''.join(prefixed_lines()) + def __str__(self): + return self.__unicode__() def execfile_(filepath, _globals, open=open): # type: (unicode, Any, Callable) -> None from sphinx.util.osutil import fs_encoding - # get config source -- 'b' is a no-op under 2.x, while 'U' is - # ignored under 3.x (but 3.x compile() accepts \r\n newlines) - mode = 'rb' if PY3 else 'rbU' - with open(filepath, mode) as f: + with open(filepath, 'rb') as f: source = f.read() # compile to a code object, handle syntax errors diff --git a/sphinx/util/requests.py b/sphinx/util/requests.py index b6c0d1ab8..65ddaedb7 100644 --- a/sphinx/util/requests.py +++ b/sphinx/util/requests.py @@ -34,7 +34,7 @@ except ImportError: from urllib3.exceptions import InsecureRequestWarning # type: ignore except ImportError: # for requests < 2.4.0 - InsecureRequestWarning = None + InsecureRequestWarning = None # type: ignore try: from requests.packages.urllib3.exceptions import InsecurePlatformWarning @@ -44,7 +44,7 @@ except ImportError: from urllib3.exceptions import InsecurePlatformWarning # type: ignore except ImportError: # for requests < 2.4.0 - InsecurePlatformWarning = None + InsecurePlatformWarning = None # type: ignore # try to load requests[security] (but only if SSL is available) try: diff --git a/sphinx/util/typing.py b/sphinx/util/typing.py index a26dac473..d31fa7c68 100644 --- a/sphinx/util/typing.py +++ b/sphinx/util/typing.py @@ -13,15 +13,12 @@ from typing import Callable, Dict, List, Tuple from docutils import nodes from docutils.parsers.rst.states import Inliner -from six import PY3 +from six import text_type -if PY3: - unicode = str - # common role functions -RoleFunction = Callable[[unicode, unicode, unicode, int, Inliner, Dict, List[unicode]], +RoleFunction = Callable[[text_type, text_type, text_type, int, Inliner, Dict, List[text_type]], Tuple[List[nodes.Node], List[nodes.Node]]] # title getter functions for enumerable nodes (see sphinx.domains.std) -TitleGetter = Callable[[nodes.Node], unicode] +TitleGetter = Callable[[nodes.Node], text_type] diff --git a/sphinx/versioning.py b/sphinx/versioning.py index 58b648069..abe7c3f10 100644 --- a/sphinx/versioning.py +++ b/sphinx/versioning.py @@ -14,7 +14,6 @@ from itertools import product from operator import itemgetter from uuid import uuid4 -from six import iteritems from six.moves import cPickle as pickle from six.moves import range, zip_longest @@ -102,7 +101,7 @@ def merge_doctrees(old, new, condition): # choose the old node with the best ratio for each new node and set the uid # as long as the ratio is under a certain value, in which case we consider # them not changed but different - ratios = sorted(iteritems(ratios), key=itemgetter(1)) # type: ignore + ratios = sorted(ratios.items(), key=itemgetter(1)) # type: ignore for (old_node, new_node), ratio in ratios: if new_node in seen: continue diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 0f1353be8..8815ce1c1 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -24,7 +24,6 @@ from six import itervalues, text_type from sphinx import addnodes from sphinx import highlighting -from sphinx.builders.latex.nodes import captioned_literal_block, footnotetext from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.errors import SphinxError from sphinx.locale import admonitionlabels, _, __ @@ -57,13 +56,6 @@ SHORTHANDOFF = r''' MAX_CITATION_LABEL_LENGTH = 8 LATEXSECTIONNAMES = ["part", "chapter", "section", "subsection", "subsubsection", "paragraph", "subparagraph"] -HYPERLINK_SUPPORT_NODES = ( - nodes.figure, - nodes.literal_block, - nodes.table, - nodes.section, - captioned_literal_block, -) ENUMERATE_LIST_STYLE = defaultdict(lambda: r'\arabic', { 'arabic': r'\arabic', @@ -2615,3 +2607,7 @@ class LaTeXTranslator(nodes.NodeVisitor): # # refs: https://github.com/sphinx-doc/sphinx/issues/4889 from sphinx.builders.latex.transforms import URI_SCHEMES, ShowUrlsTransform # NOQA + +# FIXME: Workaround to avoid circular import +# refs: https://github.com/sphinx-doc/sphinx/issues/5433 +from sphinx.builders.latex.nodes import HYPERLINK_SUPPORT_NODES, captioned_literal_block, footnotetext # NOQA diff --git a/tests/conftest.py b/tests/conftest.py index 9f46b1868..65142d84a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -9,7 +9,6 @@ import os import shutil -import sys import docutils import pytest @@ -22,13 +21,6 @@ pytest_plugins = 'sphinx.testing.fixtures' # Exclude 'roots' dirs for pytest test collector collect_ignore = ['roots'] -# Disable Python version-specific -if sys.version_info < (3,): - collect_ignore += ['py3'] - -if sys.version_info < (3, 5): - collect_ignore += ['py35'] - @pytest.fixture(scope='session') def rootdir(): diff --git a/tests/py3/test_util_inspect_py3.py b/tests/py3/test_util_inspect_py3.py deleted file mode 100644 index 6d02025f9..000000000 --- a/tests/py3/test_util_inspect_py3.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- -""" - py3/test_util_inspect - ~~~~~~~~~~~~~~~~~~~~~ - - Tests util.inspect functions. - - :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -from sphinx.util import inspect - - -def test_Signature_keyword_only_arguments(): - def func1(arg1, arg2, *, arg3=None, arg4=None): - pass - - def func2(*, arg3, arg4): - pass - - sig = inspect.Signature(func1).format_args() - assert sig == '(arg1, arg2, *, arg3=None, arg4=None)' - - sig = inspect.Signature(func2).format_args() - assert sig == '(*, arg3, arg4)' diff --git a/tests/py35/test_autodoc_py35.py b/tests/py35/test_autodoc_py35.py deleted file mode 100644 index 39df5fcf4..000000000 --- a/tests/py35/test_autodoc_py35.py +++ /dev/null @@ -1,348 +0,0 @@ -# -*- coding: utf-8 -*- -""" - test_autodoc - ~~~~~~~~~~~~ - - Test the autodoc extension. This tests mainly the Documenters; the auto - directives are tested in a test source file translated by test_build. - - :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -# "raises" imported for usage by autodoc -import sys - -import pytest -import six -from docutils.statemachine import ViewList -from six import StringIO - -from sphinx.ext.autodoc import FunctionDocumenter, ALL, Options -from sphinx.testing.util import SphinxTestApp, Struct -from sphinx.util import logging -from sphinx.util import save_traceback # NOQA - -app = None - - -@pytest.fixture(scope='module', autouse=True) -def setup_module(rootdir, sphinx_test_tempdir): - global app - srcdir = sphinx_test_tempdir / 'autodoc-root' - if not srcdir.exists(): - (rootdir / 'test-root').copytree(srcdir) - app = SphinxTestApp(srcdir=srcdir) - app.builder.env.app = app - app.builder.env.temp_data['docname'] = 'dummy' - app.connect('autodoc-process-docstring', process_docstring) - app.connect('autodoc-process-signature', process_signature) - app.connect('autodoc-skip-member', skip_member) - yield - app.cleanup() - - -directive = options = None - - -@pytest.fixture -def setup_test(): - global options, directive - global processed_docstrings, processed_signatures - - options = Options( - inherited_members = False, - undoc_members = False, - private_members = False, - special_members = False, - imported_members = False, - show_inheritance = False, - noindex = False, - annotation = None, - synopsis = '', - platform = '', - deprecated = False, - members = [], - member_order = 'alphabetic', - exclude_members = set(), - ) - - directive = Struct( - env = app.builder.env, - genopt = options, - result = ViewList(), - filename_set = set(), - ) - - processed_docstrings = [] - processed_signatures = [] - - -processed_docstrings = [] -processed_signatures = [] - - -def process_docstring(app, what, name, obj, options, lines): - processed_docstrings.append((what, name)) - if name == 'bar': - lines.extend(['42', '']) - - -def process_signature(app, what, name, obj, options, args, retann): - processed_signatures.append((what, name)) - if name == 'bar': - return '42', None - - -def skip_member(app, what, name, obj, skip, options): - if name in ('__special1__', '__special2__'): - return skip - if name.startswith('_'): - return True - if name == 'skipmeth': - return True - - -@pytest.mark.usefixtures('setup_test') -def test_generate(): - logging.setup(app, app._status, app._warning) - - def assert_warns(warn_str, objtype, name, **kw): - inst = app.registry.documenters[objtype](directive, name) - inst.generate(**kw) - assert len(directive.result) == 0, directive.result - assert warn_str in app._warning.getvalue() - app._warning.truncate(0) - - def assert_works(objtype, name, **kw): - inst = app.registry.documenters[objtype](directive, name) - inst.generate(**kw) - assert directive.result - # print '\n'.join(directive.result) - assert app._warning.getvalue() == '' - del directive.result[:] - - def assert_processes(items, objtype, name, **kw): - del processed_docstrings[:] - del processed_signatures[:] - assert_works(objtype, name, **kw) - assert set(processed_docstrings) | set(processed_signatures) == set(items) - - def assert_result_contains(item, objtype, name, **kw): - 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[:] - - def assert_order(items, objtype, name, member_order, **kw): - inst = app.registry.documenters[objtype](directive, name) - inst.options.member_order = member_order - inst.generate(**kw) - assert app._warning.getvalue() == '' - items = list(reversed(items)) - lineiter = iter(directive.result) - # for line in directive.result: - # if line.strip(): - # print repr(line) - while items: - item = items.pop() - for line in lineiter: - if line == item: - break - else: # ran out of items! - assert False, ('item %r not found in result or not in the ' - ' correct order' % item) - del directive.result[:] - - options.members = [] - - # no module found? - assert_warns("import for autodocumenting 'foobar'", - 'function', 'foobar', more_content=None) - # importing - assert_warns("failed to import module 'test_foobar'", - 'module', 'test_foobar', more_content=None) - # attributes missing - assert_warns("failed to import function 'foobar' from module 'util'", - 'function', 'util.foobar', more_content=None) - # method missing - assert_warns("failed to import method 'Class.foobar' from module 'test_autodoc_py35';", - 'method', 'test_autodoc_py35.Class.foobar', more_content=None) - - # test auto and given content mixing - directive.env.ref_context['py:module'] = 'test_autodoc_py35' - 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) - - # test check_module - inst = FunctionDocumenter(directive, 'save_traceback') - inst.generate(check_module=True) - assert len(directive.result) == 0 - - # assert that exceptions can be documented - assert_works('exception', 'test_autodoc_py35.CustomEx', all_members=True) - assert_works('exception', 'test_autodoc_py35.CustomEx') - - # test diverse inclusion settings for members - should = [('class', 'test_autodoc_py35.Class')] - assert_processes(should, 'class', 'Class') - should.extend([('method', 'test_autodoc_py35.Class.meth')]) - options.members = ['meth'] - options.exclude_members = set(['excludemeth']) - assert_processes(should, 'class', 'Class') - should.extend([('attribute', 'test_autodoc_py35.Class.prop'), - ('attribute', 'test_autodoc_py35.Class.descr'), - ('attribute', 'test_autodoc_py35.Class.attr'), - ('attribute', 'test_autodoc_py35.Class.docattr'), - ('attribute', 'test_autodoc_py35.Class.udocattr'), - ('attribute', 'test_autodoc_py35.Class.mdocattr'), - ('attribute', 'test_autodoc_py35.Class.inst_attr_comment'), - ('attribute', 'test_autodoc_py35.Class.inst_attr_inline'), - ('attribute', 'test_autodoc_py35.Class.inst_attr_string'), - ('method', 'test_autodoc_py35.Class.moore'), - ]) - if six.PY3 and sys.version_info[:2] >= (3, 5): - should.extend([ - ('method', 'test_autodoc_py35.Class.do_coroutine'), - ]) - options.members = ALL - assert_processes(should, 'class', 'Class') - options.undoc_members = True - should.extend((('attribute', 'test_autodoc_py35.Class.skipattr'), - ('method', 'test_autodoc_py35.Class.undocmeth'), - ('method', 'test_autodoc_py35.Class.roger'))) - assert_processes(should, 'class', 'Class') - options.inherited_members = True - should.append(('method', 'test_autodoc_py35.Class.inheritedmeth')) - assert_processes(should, 'class', 'Class') - - # test special members - options.special_members = ['__special1__'] - should.append(('method', 'test_autodoc_py35.Class.__special1__')) - assert_processes(should, 'class', 'Class') - options.special_members = ALL - should.append(('method', 'test_autodoc_py35.Class.__special2__')) - assert_processes(should, 'class', 'Class') - options.special_members = False - - -# --- generate fodder ------------ -__all__ = ['Class'] - -#: documentation for the integer -integer = 1 - - -class CustomEx(Exception): - """My custom exception.""" - - def f(self): - """Exception method.""" - - -class CustomDataDescriptor: - """Descriptor class docstring.""" - - def __init__(self, doc): - self.__doc__ = doc - - def __get__(self, obj, type=None): - if obj is None: - return self - return 42 - - def meth(self): - """Function.""" - return "The Answer" - - -def _funky_classmethod(name, b, c, d, docstring=None): - """Generates a classmethod for a class from a template by filling out - some arguments.""" - def template(cls, a, b, c, d=4, e=5, f=6): - return a, b, c, d, e, f - from functools import partial - function = partial(template, b=b, c=c, d=d) - function.__name__ = name - function.__doc__ = docstring - return classmethod(function) - - -class Base: - def inheritedmeth(self): - """Inherited function.""" - - -if six.PY3 and sys.version_info[:2] >= (3, 5): - async def _other_coro_func(): - return "run" - - -class Class(Base): - """Class to document.""" - - descr = CustomDataDescriptor("Descriptor instance docstring.") - - def meth(self): - """Function.""" - - def undocmeth(self): - pass - - def skipmeth(self): - """Method that should be skipped.""" - - def excludemeth(self): - """Method that should be excluded.""" - - # should not be documented - skipattr = 'foo' - - #: should be documented -- süß - attr = 'bar' - - @property - def prop(self): - """Property.""" - - docattr = 'baz' - """should likewise be documented -- süß""" - - udocattr = 'quux' - u"""should be documented as well - süß""" - - # initialized to any class imported from another module - mdocattr = StringIO() - """should be documented as well - süß""" - - roger = _funky_classmethod("roger", 2, 3, 4) - - moore = _funky_classmethod("moore", 9, 8, 7, - docstring="moore(a, e, f) -> happiness") - - def __init__(self, arg): - self.inst_attr_inline = None #: an inline documented instance attr - #: a documented instance attribute - self.inst_attr_comment = None - self.inst_attr_string = None - """a documented instance attribute""" - - def __special1__(self): - """documented special method""" - - def __special2__(self): - # undocumented special method - pass - - if six.PY3 and sys.version_info[:2] >= (3, 5): - - async def do_coroutine(self): - """A documented coroutine function""" - attr_coro_result = await _other_coro_func() # NOQA diff --git a/tests/roots/test-domain-py/module.rst b/tests/roots/test-domain-py/module.rst index 509be6c3b..64601bc95 100644 --- a/tests/roots/test-domain-py/module.rst +++ b/tests/roots/test-domain-py/module.rst @@ -38,3 +38,10 @@ module :type y: tuple(str, float) :rtype: list +.. py:attribute:: attr1 + + :type: ModTopLevel + +.. py:attribute:: attr2 + + :type: :doc:`index` diff --git a/tests/roots/test-ext-autodoc/target/__init__.py b/tests/roots/test-ext-autodoc/target/__init__.py index 402b25219..c97269d35 100644 --- a/tests/roots/test-ext-autodoc/target/__init__.py +++ b/tests/roots/test-ext-autodoc/target/__init__.py @@ -223,19 +223,6 @@ class InstAttCls(object): """Docstring for instance attribute InstAttCls.ia2.""" -class EnumCls(enum.Enum): - """ - this is enum class - """ - - #: doc for val1 - val1 = 12 - val2 = 23 #: doc for val2 - val3 = 34 - """doc for val3""" - val4 = 34 - - class CustomIter(object): def __init__(self): """Create a new `CustomIter`.""" diff --git a/tests/roots/test-ext-autodoc/target/callable.py b/tests/roots/test-ext-autodoc/target/callable.py new file mode 100644 index 000000000..f3358eafd --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/callable.py @@ -0,0 +1,8 @@ +class Callable(): + """A callable object that behaves like a function.""" + + def __call__(self, arg1, arg2, **kwargs): + pass + + +function = Callable() diff --git a/tests/roots/test-ext-autodoc/target/coroutine.py b/tests/roots/test-ext-autodoc/target/coroutine.py new file mode 100644 index 000000000..b3223a820 --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/coroutine.py @@ -0,0 +1,8 @@ +class AsyncClass: + async def do_coroutine(self): + """A documented coroutine function""" + attr_coro_result = await _other_coro_func() # NOQA + + +async def _other_coro_func(): + return "run" diff --git a/tests/roots/test-ext-autodoc/target/enum.py b/tests/roots/test-ext-autodoc/target/enum.py new file mode 100644 index 000000000..31e7c6ccd --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/enum.py @@ -0,0 +1,19 @@ +from __future__ import absolute_import +import enum + + +class EnumCls(enum.Enum): + """ + this is enum class + """ + + #: doc for val1 + val1 = 12 + val2 = 23 #: doc for val2 + val3 = 34 + """doc for val3""" + val4 = 34 + + def say_hello(self): + """a method says hello to you.""" + pass diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index 2681e7c48..f469a6be3 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -17,7 +17,6 @@ from warnings import catch_warnings import pytest from docutils.statemachine import ViewList -from six import PY3 from sphinx.ext.autodoc import ( ModuleLevelDocumenter, cut_lines, between, ALL, @@ -30,11 +29,6 @@ from sphinx.util.docutils import LoggingReporter app = None -if PY3: - ROGER_METHOD = ' .. py:classmethod:: Class.roger(a, *, b=2, c=3, d=4, e=5, f=6)' -else: - ROGER_METHOD = ' .. py:classmethod:: Class.roger(a, e=5, f=6)' - IS_PYPY = platform.python_implementation() == 'PyPy' @@ -722,7 +716,7 @@ def test_autodoc_undoc_members(app): ' .. py:method:: Class.meth()', ' .. py:classmethod:: Class.moore(a, e, f) -> happiness', ' .. py:attribute:: Class.prop', - ROGER_METHOD, + ' .. py:classmethod:: Class.roger(a, *, b=2, c=3, d=4, e=5, f=6)', ' .. py:attribute:: Class.skipattr', ' .. py:method:: Class.skipmeth()', ' .. py:attribute:: Class.udocattr', @@ -802,7 +796,7 @@ def test_autodoc_special_members(app): ' .. py:method:: Class.meth()', ' .. py:classmethod:: Class.moore(a, e, f) -> happiness', ' .. py:attribute:: Class.prop', - ROGER_METHOD, + ' .. py:classmethod:: Class.roger(a, *, b=2, c=3, d=4, e=5, f=6)', ' .. py:attribute:: Class.skipattr', ' .. py:method:: Class.skipmeth()', ' .. py:attribute:: Class.udocattr', @@ -829,7 +823,6 @@ def test_autodoc_ignore_module_all(app): '.. py:class:: CustomDataDescriptor2(doc)', '.. py:class:: CustomDataDescriptorMeta', '.. py:class:: CustomDict', - '.. py:class:: EnumCls', '.. py:class:: InstAttCls()', '.. py:class:: Outer', ' .. py:class:: Outer.Inner', @@ -876,11 +869,6 @@ def test_autodoc_subclass_of_builtin_class(app): @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_autodoc_inner_class(app): - if PY3: - builtins = ' alias of :class:`builtins.dict`' - else: - builtins = ' alias of :class:`__builtin__.dict`' - options = {"members": None} actual = do_autodoc(app, 'class', 'target.Outer', options) assert list(actual) == [ @@ -906,7 +894,7 @@ def test_autodoc_inner_class(app): ' .. py:attribute:: Outer.factory', ' :module: target', ' ', - builtins + ' alias of :class:`builtins.dict`' ] actual = do_autodoc(app, 'class', 'target.Outer.Inner', options) @@ -975,7 +963,7 @@ def test_autodoc_member_order(app): ' .. py:attribute:: Class.docattr', ' .. py:attribute:: Class.udocattr', ' .. py:attribute:: Class.mdocattr', - ROGER_METHOD, + ' .. py:classmethod:: Class.roger(a, *, b=2, c=3, d=4, e=5, f=6)', ' .. py:classmethod:: Class.moore(a, e, f) -> happiness', ' .. py:attribute:: Class.inst_attr_inline', ' .. py:attribute:: Class.inst_attr_comment', @@ -994,7 +982,7 @@ def test_autodoc_member_order(app): ' .. py:method:: Class.excludemeth()', ' .. py:method:: Class.meth()', ' .. py:classmethod:: Class.moore(a, e, f) -> happiness', - ROGER_METHOD, + ' .. py:classmethod:: Class.roger(a, *, b=2, c=3, d=4, e=5, f=6)', ' .. py:method:: Class.skipmeth()', ' .. py:method:: Class.undocmeth()', ' .. py:attribute:: Class._private_inst_attr', @@ -1029,7 +1017,7 @@ def test_autodoc_member_order(app): ' .. py:method:: Class.meth()', ' .. py:classmethod:: Class.moore(a, e, f) -> happiness', ' .. py:attribute:: Class.prop', - ROGER_METHOD, + ' .. py:classmethod:: Class.roger(a, *, b=2, c=3, d=4, e=5, f=6)', ' .. py:attribute:: Class.skipattr', ' .. py:method:: Class.skipmeth()', ' .. py:attribute:: Class.udocattr', @@ -1263,48 +1251,54 @@ def test_instance_attributes(app): def test_enum_class(app): options = {"members": None, "undoc-members": True} - actual = do_autodoc(app, 'class', 'target.EnumCls', options) + actual = do_autodoc(app, 'class', 'target.enum.EnumCls', options) assert list(actual) == [ '', '.. py:class:: EnumCls', - ' :module: target', + ' :module: target.enum', '', ' this is enum class', ' ', ' ', + ' .. py:method:: EnumCls.say_hello()', + ' :module: target.enum', + ' ', + ' a method says hello to you.', + ' ', + ' ', ' .. py:attribute:: EnumCls.val1', - ' :module: target', + ' :module: target.enum', ' :annotation: = 12', ' ', ' doc for val1', ' ', ' ', ' .. py:attribute:: EnumCls.val2', - ' :module: target', + ' :module: target.enum', ' :annotation: = 23', ' ', ' doc for val2', ' ', ' ', ' .. py:attribute:: EnumCls.val3', - ' :module: target', + ' :module: target.enum', ' :annotation: = 34', ' ', ' doc for val3', ' ', ' ', ' .. py:attribute:: EnumCls.val4', - ' :module: target', + ' :module: target.enum', ' :annotation: = 34', ' ' ] # checks for an attribute of EnumClass - actual = do_autodoc(app, 'attribute', 'target.EnumCls.val1') + actual = do_autodoc(app, 'attribute', 'target.enum.EnumCls.val1') assert list(actual) == [ '', '.. py:attribute:: EnumCls.val1', - ' :module: target', + ' :module: target.enum', ' :annotation: = 12', '', ' doc for val1', @@ -1341,6 +1335,19 @@ def test_descriptor_class(app): ] +@pytest.mark.sphinx('html', testroot='ext-autodoc') +def test_autofunction_for_callable(app): + actual = do_autodoc(app, 'function', 'target.callable.function') + assert list(actual) == [ + '', + '.. py:function:: function(arg1, arg2, **kwargs)', + ' :module: target.callable', + '', + ' A callable object that behaves like a function.', + ' ' + ] + + @pytest.mark.sphinx('html', testroot='root') def test_mocked_module_imports(app): options = {"members": 'TestAutodoc,decoratedFunction'} @@ -1408,8 +1415,24 @@ def test_partialfunction(): assert call_autodoc('module', 'target.partialfunction') == expected -@pytest.mark.skipif(sys.version_info < (3, 4), - reason='functools.partialmethod is available on py34 or above') +@pytest.mark.usefixtures('setup_test') +def test_coroutine(): + options = {"members": None} + actual = do_autodoc(app, 'class', 'target.coroutine.AsyncClass', options) + assert list(actual) == [ + '', + '.. py:class:: AsyncClass', + ' :module: target.coroutine', + '', + ' ', + ' .. py:method:: AsyncClass.do_coroutine()', + ' :module: target.coroutine', + ' ', + ' A documented coroutine function', + ' ' + ] + + @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_partialmethod(app): expected = [ @@ -1473,7 +1496,7 @@ def test_merge_autodoc_default_flags2(app): @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_autodoc_default_options(app): # no settings - actual = do_autodoc(app, 'class', 'target.EnumCls') + actual = do_autodoc(app, 'class', 'target.enum.EnumCls') assert ' .. py:attribute:: EnumCls.val1' not in actual assert ' .. py:attribute:: EnumCls.val4' not in actual actual = do_autodoc(app, 'class', 'target.CustomIter') @@ -1481,7 +1504,7 @@ def test_autodoc_default_options(app): # with :members: app.config.autodoc_default_options = {'members': None} - actual = do_autodoc(app, 'class', 'target.EnumCls') + actual = do_autodoc(app, 'class', 'target.enum.EnumCls') assert ' .. py:attribute:: EnumCls.val1' in actual assert ' .. py:attribute:: EnumCls.val4' not in actual @@ -1490,7 +1513,7 @@ def test_autodoc_default_options(app): 'members': None, 'undoc-members': None, } - actual = do_autodoc(app, 'class', 'target.EnumCls') + actual = do_autodoc(app, 'class', 'target.enum.EnumCls') assert ' .. py:attribute:: EnumCls.val1' in actual assert ' .. py:attribute:: EnumCls.val4' in actual @@ -1516,7 +1539,7 @@ def test_autodoc_default_options(app): 'members': None, 'exclude-members': None, } - actual = do_autodoc(app, 'class', 'target.EnumCls') + actual = do_autodoc(app, 'class', 'target.enum.EnumCls') assert ' .. py:attribute:: EnumCls.val1' in actual assert ' .. py:attribute:: EnumCls.val4' not in actual app.config.autodoc_default_options = { @@ -1540,7 +1563,7 @@ def test_autodoc_default_options(app): def test_autodoc_default_options_with_values(app): # with :members: app.config.autodoc_default_options = {'members': 'val1,val2'} - actual = do_autodoc(app, 'class', 'target.EnumCls') + actual = do_autodoc(app, 'class', 'target.enum.EnumCls') assert ' .. py:attribute:: EnumCls.val1' in actual assert ' .. py:attribute:: EnumCls.val2' in actual assert ' .. py:attribute:: EnumCls.val3' not in actual @@ -1564,7 +1587,7 @@ def test_autodoc_default_options_with_values(app): 'members': None, 'exclude-members': 'val1' } - actual = do_autodoc(app, 'class', 'target.EnumCls') + actual = do_autodoc(app, 'class', 'target.enum.EnumCls') assert ' .. py:attribute:: EnumCls.val1' not in actual assert ' .. py:attribute:: EnumCls.val2' in actual assert ' .. py:attribute:: EnumCls.val3' in actual diff --git a/tests/test_build.py b/tests/test_build.py index 47d76b2a2..e608797b9 100644 --- a/tests/test_build.py +++ b/tests/test_build.py @@ -33,11 +33,6 @@ def nonascii_srcdir(request, rootdir, sphinx_test_tempdir): # If supported, build in a non-ASCII source dir test_name = u'\u65e5\u672c\u8a9e' basedir = sphinx_test_tempdir / request.node.originalname - # Windows with versions prior to 3.2 (I think) doesn't support unicode on system path - # so we force a non-unicode path in that case - if (sys.platform == "win32" and - not (sys.version_info.major >= 3 and sys.version_info.minor >= 2)): - return basedir / 'all' try: srcdir = basedir / test_name if not srcdir.exists(): diff --git a/tests/test_build_html.py b/tests/test_build_html.py index aae53615b..1b60a56bd 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -16,10 +16,9 @@ from itertools import cycle, chain import pytest from html5lib import getTreeBuilder, HTMLParser -from six import PY3 from sphinx.errors import ConfigError -from sphinx.testing.util import remove_unicode_literals, strip_escseq +from sphinx.testing.util import strip_escseq from sphinx.util.inventory import InventoryFile @@ -30,10 +29,10 @@ ENV_WARNINGS = """\ %(root)s/autodoc_fodder.py:docstring of autodoc_fodder.MarkupError:\\d+: \ WARNING: Explicit markup ends without a blank line; unexpected unindent. %(root)s/index.rst:\\d+: WARNING: Encoding 'utf-8-sig' used for reading included \ -file u'%(root)s/wrongenc.inc' seems to be wrong, try giving an :encoding: option +file '%(root)s/wrongenc.inc' seems to be wrong, try giving an :encoding: option %(root)s/index.rst:\\d+: WARNING: image file not readable: foo.png %(root)s/index.rst:\\d+: WARNING: download file not readable: %(root)s/nonexisting.png -%(root)s/index.rst:\\d+: WARNING: invalid single index entry u'' +%(root)s/index.rst:\\d+: WARNING: invalid single index entry '' %(root)s/undecodable.rst:\\d+: WARNING: undecodable source characters, replacing \ with "\\?": b?'here: >>>(\\\\|/)xbb<<<((\\\\|/)r)?' """ @@ -45,10 +44,6 @@ HTML_WARNINGS = ENV_WARNINGS + """\ %(root)s/index.rst:\\d+: WARNING: Could not lex literal_block as "c". Highlighting skipped. """ -if PY3: - ENV_WARNINGS = remove_unicode_literals(ENV_WARNINGS) - HTML_WARNINGS = remove_unicode_literals(HTML_WARNINGS) - etree_cache = {} diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index 8075bf8d0..2a8c60683 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -17,11 +17,10 @@ from shutil import copyfile from subprocess import Popen, PIPE import pytest -from six import PY3 from test_build_html import ENV_WARNINGS from sphinx.errors import SphinxError -from sphinx.testing.util import remove_unicode_literals, strip_escseq +from sphinx.testing.util import strip_escseq from sphinx.util import docutils from sphinx.util.osutil import cd, ensuredir from sphinx.writers.latex import LaTeXTranslator @@ -40,9 +39,6 @@ LATEX_WARNINGS = ENV_WARNINGS + """\ %(root)s/index.rst:\\d+: WARNING: Could not lex literal_block as "c". Highlighting skipped. """ -if PY3: - LATEX_WARNINGS = remove_unicode_literals(LATEX_WARNINGS) - # only run latex if all needed packages are there def kpsetest(*filenames): diff --git a/tests/test_build_texinfo.py b/tests/test_build_texinfo.py index b1fd8c2a9..a1af11df7 100644 --- a/tests/test_build_texinfo.py +++ b/tests/test_build_texinfo.py @@ -15,10 +15,9 @@ import re from subprocess import Popen, PIPE import pytest -from six import PY3 from test_build_html import ENV_WARNINGS -from sphinx.testing.util import remove_unicode_literals, strip_escseq +from sphinx.testing.util import strip_escseq from sphinx.writers.texinfo import TexinfoTranslator @@ -30,9 +29,6 @@ TEXINFO_WARNINGS = ENV_WARNINGS + """\ \\['application/pdf', 'image/svg\\+xml'\\] \\(svgimg.\\*\\) """ -if PY3: - TEXINFO_WARNINGS = remove_unicode_literals(TEXINFO_WARNINGS) - @pytest.mark.sphinx('texinfo', testroot='warnings', freshenv=True) def test_texinfo_warnings(app, status, warning): diff --git a/tests/test_config.py b/tests/test_config.py index 4a0a557fe..c56fe2f3e 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -11,7 +11,6 @@ """ import mock import pytest -from six import PY3 import sphinx from sphinx.config import Config, ENUM, string_classes, check_confval_types @@ -136,19 +135,6 @@ def test_errors_warnings(logger, tempdir): assert cfg.project == u'Jägermeister' assert logger.called is False - # test the warning for bytestrings with non-ascii content - # bytestrings with non-ascii content are a syntax error in python3 so we - # skip the test there - if PY3: - return - (tempdir / 'conf.py').write_text( - u'# -*- coding: latin-1\nproject = "fooä"\n', encoding='latin-1') - cfg = Config.read(tempdir, {}, None) - - assert logger.warning.called is False - cfg.check_unicode() - assert logger.warning.called is True - def test_errors_if_setup_is_not_callable(tempdir, make_app): # test the error to call setup() in the config file @@ -242,7 +228,7 @@ TYPECHECK_WARNINGS = [ ('value8', B(), None, C(), False), # sibling type ('value9', None, None, 'foo', False), # no default or no annotations ('value10', None, None, 123, False), # no default or no annotations - ('value11', None, [str], u'bar', False if PY3 else True), # str vs unicode + ('value11', None, [str], u'bar', False), # str vs unicode ('value12', 'string', None, u'bar', False), # str vs unicode ('value13', None, string_classes, 'bar', False), # string_classes ('value14', None, string_classes, u'bar', False), # string_classes diff --git a/tests/test_docutilsconf.py b/tests/test_docutilsconf.py index 989edc6a8..32a2aad29 100644 --- a/tests/test_docutilsconf.py +++ b/tests/test_docutilsconf.py @@ -10,7 +10,6 @@ """ import re -import sys import pytest @@ -82,9 +81,6 @@ def test_texinfo(app, status, warning): @pytest.mark.sphinx('html', testroot='docutilsconf', docutilsconf='[general]\nsource_link=true\n') -@pytest.mark.skip(sys.platform == "win32" and - not (sys.version_info.major >= 3 and sys.version_info.minor >= 2), - reason="Python < 3.2 on Win32 doesn't handle non-ASCII paths right") def test_docutils_source_link_with_nonascii_file(app, status, warning): srcdir = path(app.srcdir) mb_name = u'\u65e5\u672c\u8a9e' diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index 8e93986fa..44205f539 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -113,7 +113,10 @@ def test_domain_py_xrefs(app, status, warning): assert_refnode(refnodes[9], False, False, 'str', 'class') assert_refnode(refnodes[10], False, False, 'float', 'class') assert_refnode(refnodes[11], False, False, 'list', 'class') - assert len(refnodes) == 12 + assert_refnode(refnodes[11], False, False, 'list', 'class') + assert_refnode(refnodes[12], False, False, 'ModTopLevel', 'class') + assert_refnode(refnodes[13], False, False, 'index', 'doc', domain='std') + assert len(refnodes) == 14 doctree = app.env.get_doctree('module_option') refnodes = list(doctree.traverse(addnodes.pending_xref)) diff --git a/tests/test_errors.py b/tests/test_errors.py new file mode 100644 index 000000000..c8cf4b05d --- /dev/null +++ b/tests/test_errors.py @@ -0,0 +1,17 @@ +import sys + +from sphinx.errors import ExtensionError + + +def test_extension_error_repr(): + exc = ExtensionError("foo") + assert repr(exc) == "ExtensionError('foo')" + + +def test_extension_error_with_orig_exc_repr(): + exc = ExtensionError("foo", Exception("bar")) + if sys.version_info < (3, 7): + expected = "ExtensionError('foo', Exception('bar',))" + else: + expected = "ExtensionError('foo', Exception('bar'))" + assert repr(exc) == expected diff --git a/tests/test_ext_autosummary.py b/tests/test_ext_autosummary.py index 9b98a59d1..e75fb71fd 100644 --- a/tests/test_ext_autosummary.py +++ b/tests/test_ext_autosummary.py @@ -10,7 +10,7 @@ """ import pytest -from six import iteritems, StringIO +from six import StringIO from sphinx.ext.autosummary import mangle_signature, import_by_name, extract_summary from sphinx.testing.util import etree_parse @@ -140,7 +140,7 @@ def test_get_items_summary(make_app, app_params): 'C.prop_attr2': 'This is a attribute docstring', 'C.C2': 'This is a nested inner class docstring', } - for key, expected in iteritems(expected_values): + for key, expected in expected_values.items(): assert autosummary_items[key][2] == expected, 'Summary for %s was %r -'\ ' expected %r' % (key, autosummary_items[key], expected) diff --git a/tests/test_ext_doctest.py b/tests/test_ext_doctest.py index f7b6ca5f8..13e0066f6 100644 --- a/tests/test_ext_doctest.py +++ b/tests/test_ext_doctest.py @@ -14,7 +14,6 @@ from collections import Counter import pytest from packaging.specifiers import InvalidSpecifier from packaging.version import InvalidVersion -from six import PY2 from sphinx.ext.doctest import is_allowed_version @@ -112,9 +111,6 @@ def record(directive, part, should_skip): return 'Recorded {} {} {}'.format(directive, part, should_skip) -@pytest.mark.xfail( - PY2, reason='node.source points to document instead of filename', -) @pytest.mark.sphinx('doctest', testroot='ext-doctest-with-autodoc') def test_reporting_with_autodoc(app, status, warning, capfd): # Patch builder to get a copy of the output diff --git a/tests/test_pycode.py b/tests/test_pycode.py index 2eab456bc..f35a57c59 100644 --- a/tests/test_pycode.py +++ b/tests/test_pycode.py @@ -12,8 +12,6 @@ import os import sys -from six import PY2 - import sphinx from sphinx.pycode import ModuleAnalyzer @@ -24,20 +22,14 @@ def test_ModuleAnalyzer_for_string(): analyzer = ModuleAnalyzer.for_string('print("Hello world")', 'module_name') assert analyzer.modname == 'module_name' assert analyzer.srcname == '' - if PY2: - assert analyzer.encoding == 'ascii' - else: - assert analyzer.encoding is None + assert analyzer.encoding is None def test_ModuleAnalyzer_for_file(): analyzer = ModuleAnalyzer.for_string(SPHINX_MODULE_PATH, 'sphinx') assert analyzer.modname == 'sphinx' assert analyzer.srcname == '' - if PY2: - assert analyzer.encoding == 'ascii' - else: - assert analyzer.encoding is None + assert analyzer.encoding is None def test_ModuleAnalyzer_for_module(): diff --git a/tests/test_pycode_parser.py b/tests/test_pycode_parser.py index 0875329a4..4fbfefcf2 100644 --- a/tests/test_pycode_parser.py +++ b/tests/test_pycode_parser.py @@ -12,7 +12,6 @@ import sys import pytest -from six import PY2 from sphinx.pycode.parser import Parser @@ -135,7 +134,6 @@ def test_complex_assignment(): assert parser.definitions == {} -@pytest.mark.skipif(PY2, reason='tests for py3 syntax') def test_complex_assignment_py3(): source = ('a, *b, c = (1, 2, 3, 4) #: unpack assignment\n' 'd, *self.attr = (5, 6, 7) #: unpack assignment2\n' diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 64c38457d..32145f3a8 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -13,7 +13,7 @@ import sys import time import pytest -from six import PY2, text_type, StringIO +from six import text_type, StringIO from six.moves import input from sphinx import application @@ -37,12 +37,7 @@ def mock_input(answers, needanswer=False): raise AssertionError('answer for %r missing and no default ' 'present' % prompt) called.add(prompt) - if PY2: - prompt = str(prompt) # Python2.x raw_input emulation - # `raw_input` encode `prompt` by default encoding to print. - else: - prompt = text_type(prompt) # Python3.x input emulation - # `input` decode prompt by default encoding before print. + prompt = text_type(prompt) for question in answers: if prompt.startswith(qs.PROMPT_PREFIX + question): return answers[question] diff --git a/tests/test_util_inspect.py b/tests/test_util_inspect.py index 721299255..bbaf4e97b 100644 --- a/tests/test_util_inspect.py +++ b/tests/test_util_inspect.py @@ -13,7 +13,6 @@ import sys from textwrap import dedent import pytest -from six import PY3 from sphinx.util import inspect @@ -25,15 +24,11 @@ def test_getargspec(): spec = inspect.getargspec(func) assert spec.args == ['a', 'b', 'c', 'd'] assert spec.varargs == 'e' - if PY3: - assert spec.varkw == 'f' - assert spec.defaults == (1, 2) - assert spec.kwonlyargs == [] - assert spec.kwonlydefaults is None - assert spec.annotations == {} - else: - assert spec.keywords == 'f' - assert spec.defaults == [1, 2] + assert spec.varkw == 'f' + assert spec.defaults == (1, 2) + assert spec.kwonlyargs == [] + assert spec.kwonlydefaults is None + assert spec.annotations == {} def test_getargspec_partial(): @@ -42,19 +37,13 @@ def test_getargspec_partial(): partial = functools.partial(func1, 10, c=11) spec = inspect.getargspec(partial) - if PY3: - assert spec.args == ['b'] - assert spec.varargs is None - assert spec.varkw == 'f' - assert spec.defaults is None - assert spec.kwonlyargs == ['c', 'd'] - assert spec.kwonlydefaults == {'c': 11, 'd': 2} - assert spec.annotations == {} - else: - assert spec.args == ['b', 'd'] - assert spec.varargs == 'e' - assert spec.keywords == 'f' - assert spec.defaults == [2] + assert spec.args == ['b'] + assert spec.varargs is None + assert spec.varkw == 'f' + assert spec.defaults is None + assert spec.kwonlyargs == ['c', 'd'] + assert spec.kwonlydefaults == {'c': 11, 'd': 2} + assert spec.annotations == {} def test_getargspec_partial2(): @@ -62,19 +51,8 @@ def test_getargspec_partial2(): pass p = functools.partial(fun, 10, c=11) - if PY3: - # Python 3's partial is rather cleverer than Python 2's, and we - # have to jump through some hoops to define an equivalent function - # in a way that won't confuse Python 2's parser: - ns = {} - exec(dedent(""" - def f_expected(b, *, c=11, d=2): - pass - """), ns) - f_expected = ns["f_expected"] - else: - def f_expected(b, d=2): - pass + def f_expected(b, *, c=11, d=2): + pass expected = inspect.getargspec(f_expected) assert expected == inspect.getargspec(p) @@ -105,13 +83,8 @@ def test_getargspec_bound_methods(): pass assert expected_unbound == inspect.getargspec(Foo.method) - if PY3 and sys.version_info >= (3, 4, 4): - # On py2, the inspect functions don't properly handle bound - # methods (they include a spurious 'self' argument) - assert expected_bound == inspect.getargspec(bound_method) - # On py2, the inspect functions can't properly handle wrapped - # functions (no __wrapped__ support) - assert expected_bound == inspect.getargspec(wrapped_bound_method) + assert expected_bound == inspect.getargspec(bound_method) + assert expected_bound == inspect.getargspec(wrapped_bound_method) def test_Signature(): @@ -143,10 +116,7 @@ def test_Signature_partial(): p = functools.partial(fun, 10, c=11) sig = inspect.Signature(p).format_args() - if sys.version_info < (3,): - assert sig == '(b, d=2)' - else: - assert sig == '(b, *, c=11, d=2)' + assert sig == '(b, *, c=11, d=2)' def test_Signature_methods(): @@ -193,16 +163,9 @@ def test_Signature_methods(): # wrapped bound method sig = inspect.Signature(wrapped_bound_method).format_args() - if sys.version_info < (3,): - assert sig == '(*args, **kwargs)' - elif sys.version_info < (3, 4, 4): - assert sig == '(self, arg1, **kwargs)' - else: - assert sig == '(arg1, **kwargs)' + assert sig == '(arg1, **kwargs)' -@pytest.mark.skipif(sys.version_info < (3, 4), - reason='functools.partialmethod is available on py34 or above') def test_Signature_partialmethod(): from functools import partialmethod @@ -228,11 +191,9 @@ def test_Signature_partialmethod(): assert sig == '()' -@pytest.mark.skipif(sys.version_info < (3, 4), - reason='type annotation test is available on py34 or above') def test_Signature_annotations(): - from typing_test_data import ( - f0, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, Node) + from typing_test_data import (f0, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, + f11, f12, f13, f14, f15, f16, Node) # Class annotations sig = inspect.Signature(f0).format_args() @@ -297,6 +258,14 @@ def test_Signature_annotations(): sig = inspect.Signature(f14).format_args() assert sig == '() -> Any' + # keyword only arguments (1) + sig = inspect.Signature(f15).format_args() + assert sig == '(arg1, arg2, *, arg3=None, arg4=None)' + + # keyword only arguments (2) + sig = inspect.Signature(f16).format_args() + assert sig == '(*, arg3, arg4)' + # type hints by string sig = inspect.Signature(Node.children).format_args() if (3, 5, 0) <= sys.version_info < (3, 5, 3): @@ -376,37 +345,25 @@ def test_dictionary_sorting(): def test_set_sorting(): set_ = set("gfedcba") description = inspect.object_description(set_) - if PY3: - assert description == "{'a', 'b', 'c', 'd', 'e', 'f', 'g'}" - else: - assert description == "set(['a', 'b', 'c', 'd', 'e', 'f', 'g'])" + assert description == "{'a', 'b', 'c', 'd', 'e', 'f', 'g'}" def test_set_sorting_fallback(): set_ = set((None, 1)) description = inspect.object_description(set_) - if PY3: - assert description in ("{1, None}", "{None, 1}") - else: - assert description in ("set([1, None])", "set([None, 1])") + assert description in ("{1, None}", "{None, 1}") def test_frozenset_sorting(): frozenset_ = frozenset("gfedcba") description = inspect.object_description(frozenset_) - if PY3: - assert description == "frozenset({'a', 'b', 'c', 'd', 'e', 'f', 'g'})" - else: - assert description == "frozenset(['a', 'b', 'c', 'd', 'e', 'f', 'g'])" + assert description == "frozenset({'a', 'b', 'c', 'd', 'e', 'f', 'g'})" def test_frozenset_sorting_fallback(): frozenset_ = frozenset((None, 1)) description = inspect.object_description(frozenset_) - if PY3: - assert description in ("frozenset({1, None})", "frozenset({None, 1})") - else: - assert description in ("frozenset([1, None])", "frozenset([None, 1])") + assert description in ("frozenset({1, None})", "frozenset({None, 1})") def test_dict_customtype(): @@ -437,10 +394,5 @@ def test_isstaticmethod(): assert inspect.isstaticmethod(Foo.method1, Foo, 'method1') is True assert inspect.isstaticmethod(Foo.method2, Foo, 'method2') is False - - if sys.version_info < (3, 0): - assert inspect.isstaticmethod(Bar.method1, Bar, 'method1') is False - assert inspect.isstaticmethod(Bar.method2, Bar, 'method2') is False - else: - assert inspect.isstaticmethod(Bar.method1, Bar, 'method1') is True - assert inspect.isstaticmethod(Bar.method2, Bar, 'method2') is False + assert inspect.isstaticmethod(Bar.method1, Bar, 'method1') is True + assert inspect.isstaticmethod(Bar.method2, Bar, 'method2') is False diff --git a/tests/typing_test_data.py b/tests/typing_test_data.py index 4dc2d06f5..183d075b6 100644 --- a/tests/typing_test_data.py +++ b/tests/typing_test_data.py @@ -76,6 +76,13 @@ def f14() -> Any: pass +def f15(arg1, arg2, *, arg3=None, arg4=None): + pass + +def f16(*, arg3, arg4): + pass + + class Node: def __init__(self, parent: Optional['Node']) -> None: pass