diff --git a/CHANGES b/CHANGES index ac257617943..ff9e631c73e 100644 --- a/CHANGES +++ b/CHANGES @@ -36,6 +36,7 @@ Deprecated * The ``app`` argument of ``sphinx.environment.BuildEnvironment`` becomes required * ``sphinx.application.Sphinx.html_theme`` +* ``sphinx.ext.autosummary._app`` * ``sphinx.util.docstrings.extract_metadata()`` Features added @@ -56,6 +57,7 @@ Features added * #8061, #9218: autodoc: Support variable comment for alias classes * #3014: autodoc: Add :event:`autodoc-process-bases` to modify the base classes of the class definitions +* #9272: autodoc: Render enum values for the default argument value better * #3257: autosummary: Support instance attributes for classes * #9129: html search: Show search summaries when html_copy_source = False * #9120: html theme: Eliminate prompt characters of code-block from copyable @@ -75,8 +77,11 @@ Bugs fixed * #8597: autodoc: a docsting having metadata only should be treated as undocumented * #9185: autodoc: typehints for overloaded functions and methods are inaccurate +* #9250: autodoc: The inherited method not having docstring is wrongly parsed +* #9270: html theme : pyramid theme generates incorrect logo links * #9217: manpage: The name of manpage directory that is generated by :confval:`man_make_section_directory` is not correct +* #9280: py domain: "exceptions" module is not displayed * #9224: ``:param:`` and ``:type:`` fields does not support a type containing whitespace (ex. ``Dict[str, str]``) diff --git a/EXAMPLES b/EXAMPLES index 843435b1d3c..2942739b546 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -170,6 +170,7 @@ Documentation using sphinx_rtd_theme * `Arcade `__ * `aria2 `__ * `ASE `__ +* `asvin `__ * `Autofac `__ * `BigchainDB `__ * `Blender Reference Manual `__ diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst index f04b738ded9..c35b0525b1c 100644 --- a/doc/extdev/deprecated.rst +++ b/doc/extdev/deprecated.rst @@ -32,6 +32,11 @@ The following is a list of deprecated interfaces. - 6.0 - ``sphinx.registry.SphinxComponentRegistry.html_themes`` + * - ``sphinx.ext.autosummary._app`` + - 4.1 + - 6.0 + - N/A + * - ``sphinx.util.docstrings.extract_metadata()`` - 4.1 - 6.0 diff --git a/doc/usage/advanced/intl.rst b/doc/usage/advanced/intl.rst index 976b2672712..3bf353e8d72 100644 --- a/doc/usage/advanced/intl.rst +++ b/doc/usage/advanced/intl.rst @@ -118,7 +118,7 @@ section describe an easy way to translate with *sphinx-intl*. #. Translate po files. - AS noted above, these are located in the ``./locale//LC_MESSAGES`` + As noted above, these are located in the ``./locale//LC_MESSAGES`` directory. An example of one such file, from Sphinx, ``builders.po``, is given below. @@ -193,7 +193,7 @@ pot file to the po file, use the :command:`sphinx-intl update` command. .. code-block:: console - $ sphinx-intl update -p _build/locale + $ sphinx-intl update -p _build/gettext Using Transifex service for team translation diff --git a/sphinx/deprecation.py b/sphinx/deprecation.py index 6b0bdd1588b..3963e63615f 100644 --- a/sphinx/deprecation.py +++ b/sphinx/deprecation.py @@ -14,10 +14,6 @@ from typing import Any, Dict, Type -class RemovedInSphinx40Warning(DeprecationWarning): - pass - - class RemovedInSphinx50Warning(DeprecationWarning): pass diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 5035ce2ab49..7fb56c6353a 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -448,12 +448,9 @@ def handle_signature(self, sig: str, signode: desc_signature) -> Tuple[str, str] if prefix: signode += addnodes.desc_addname(prefix, prefix) - elif add_module and self.env.config.add_module_names: - if modname and modname != 'exceptions': - # exceptions are a special case, since they are documented in the - # 'exceptions' module. - nodetext = modname + '.' - signode += addnodes.desc_addname(nodetext, nodetext) + elif modname and add_module and self.env.config.add_module_names: + nodetext = modname + '.' + signode += addnodes.desc_addname(nodetext, nodetext) signode += addnodes.desc_name(name, name) if arglist: diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 2de6a62ae0c..ec1472e202c 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -1704,7 +1704,7 @@ def get_doc(self, ignore: int = None) -> Optional[List[List[str]]]: __init__ = self.get_attr(self.object, '__init__', None) initdocstring = getdoc(__init__, self.get_attr, self.config.autodoc_inherit_docstrings, - self.parent, self.object_name) + self.object, '__init__') # for new-style classes, no __init__ means default __init__ if (initdocstring is not None and (initdocstring == object.__init__.__doc__ or # for pypy @@ -1715,7 +1715,7 @@ def get_doc(self, ignore: int = None) -> Optional[List[List[str]]]: __new__ = self.get_attr(self.object, '__new__', None) initdocstring = getdoc(__new__, self.get_attr, self.config.autodoc_inherit_docstrings, - self.parent, self.object_name) + self.object, '__new__') # for new-style classes, no __new__ means default __new__ if (initdocstring is not None and (initdocstring == object.__new__.__doc__ or # for pypy diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index 32f11baffdd..3d51beaa54e 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -72,7 +72,8 @@ from sphinx import addnodes from sphinx.application import Sphinx from sphinx.config import Config -from sphinx.deprecation import RemovedInSphinx50Warning +from sphinx.deprecation import (RemovedInSphinx50Warning, RemovedInSphinx60Warning, + deprecated_alias) from sphinx.environment import BuildEnvironment from sphinx.environment.adapters.toctree import TocTree from sphinx.ext.autodoc import INSTANCEATTR, Documenter @@ -165,9 +166,13 @@ def autosummary_table_visit_html(self: HTMLTranslator, node: autosummary_table) # -- autodoc integration ------------------------------------------------------- - -# current application object (used in `get_documenter()`). -_app: Sphinx = None +deprecated_alias('sphinx.ext.autosummary', + { + '_app': None, + }, + RemovedInSphinx60Warning, + { + }) class FakeApplication: diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index ab01855d99e..45c7dbd0d89 100644 Binary files a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 0e0718c3f4b..658c3498849 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-16 04:46+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "لا يمكن العثور على المجلد المصدر (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "لا يمكن ان يكون المجلد المصدر والمجلد الهدف متطابقين" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "تشغيل Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, 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:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "تحميل الترجمات [ %s ]" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "تم" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "غير متوفرة للرسائل الافتراضية المدمجة" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "فشل: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "لم يتم اختيار نوع البناء، تم استخدام نوع البناء الافتراضي: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "نجح" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "انتهى مع وجود مشاكل" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "بناء %s، %sتحذير." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "بناء %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "قسم %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r لتم يتم العثور عليه، لهذا تم تجاهلة" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "تجهيز المستندات" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "صفحة الHTML موجودة في %(outdir)s" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "كتابة ملفات إضافية" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "رابط دائم لهذه المعادلة" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 0c68ec3af4c..997bdfb808c 100644 Binary files a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index a9d2a207c13..16da3cb4e82 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 92f3e75ca5f..14c74648d70 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 ad870b67c7a..862cb118bf4 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 880350f7fd2..46a600ce73f 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 e33e4426143..1c940d99455 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index ef3fb3f11ae..2b274ef522f 100644 Binary files a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index fb9292944c1..38d565bae89 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: cak\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "xk'isïk" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "sachoj: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Ruwachib'äl %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Kik'ajtz'ïk %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "tajin nutz'ib'aj" @@ -818,16 +818,16 @@ msgstr "tajin nutz'ib'aj" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(chupam %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 9508e01d244..81ae7dfde6b 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 5759149afc4..20e9d6cce45 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabulka %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 84b863e5694..ee67befe779 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 d7de042d2b0..a190bccaf12 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: cy\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Ffig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabl %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(yn %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 7fd3a6e0cbc..60f92395aed 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 61737b9eb00..a3b672535fe 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "konfigurationsmappe indeholder ikke en conf.py-fil (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kan ikke finde kildemappen (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Kildemappe og destinationsmappe kan ikke være identiske" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Kører Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dette projekt kræver mindst Sphinx v%s og kan derfor ikke bygges med denne version." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "indlæser oversættelser [%s] ..." -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "færdig" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "ikke tilgængelig for indbyggede beskeder" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "fejlede: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "lykkedes" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "færdig med problemer" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "kompilering %s, %s advarsel." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "kompilering %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "konfigurationsmappe indeholder ikke en conf.py-fil (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Ingen sådan konfigurationsværdi: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Konfigurationsværdien %r er allerede til stede" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "figur %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "tabel %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Kildekode %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r blev ikke fundet, ignorerer." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "forbereder dokumenter" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -821,16 +821,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML-siden er i %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "ny konfiguration" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "udvidelser ændret" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "kildemappe er ændret" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Permalink til denne ligning" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(i %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 6ccd77f18fd..61f2a61df3e 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 8524f5d3faa..4cc3a4e8a21 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, 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:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kann Quellverzeichnis nicht finden (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Quellverzeichnis und Zielverzeichnis können nicht identisch sein" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s in Verwendung" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, 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:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "Lade Übersetzungen [%s]…" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "erledigt" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "nicht verfügbar für vordefinierte Nachrichten" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "Fehlgeschlagen: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Kein builder ausgewählt, verwende 'html' per default" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "abgeschlossen" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "mit Problemen beendet" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenlesen fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenschreiben fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "Konfigurationsverzeichnis enthält keine conf.py Datei (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "Ungültige Nummer %r for Konfiguration %r, wird ignoriert" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Keine solche Konfigurationseinstellung: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Konfigurationswert %r bereits gesetzt" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Abschnitt %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Abb. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tab. %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Quellcode %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nicht gefunden, daher ignoriert." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -821,16 +821,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index f5ba54ca0cb..5e41ae2cc27 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 f75ec7526f4..3ff1dd57339 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -21,135 +21,130 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "ο κατάλογος παραμετροποίησης δεν περιλαμβάνει κανένα αρχείο conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Δεν είναι δυνατή η εύρεση του καταλόγου πηγής (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Ο κατάλογος πηγής και ο κατάλογος προορισμού δεν είναι δυνατό να είναι ίδιοι" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Εκτέλεση Sphinx έκδοση %s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Αυτό το έργο απαιτεί Sphinx έκδοσης τουλάχιστον %s και επομένως δεν είναι δυνατή η μεταγλωτισση με αυτή την έκδοση." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "δημιουργία καταλόγου εξόδου" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "κατά τον καθορισμό της επέκτασης %s" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "η 'παραμετροποίηση' σύμφωνα με τον τρέχοντα ορισμό στο conf.py δεν αποτελεί καλέσιμο. Παρακαλείσθε να τροποποιήσετε τον ορισμό ώστε να το κάνετε μία καλέσιμη συνάρτηση. Αυτό απαιτείται προκειμένου το conf.py να συμπεριφέρεται ως μία επέκταση Sphinx." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "φόρτωση μεταφράσεων [%s]..." -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "ολοκλήρωση" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "δεν είναι διαθέσιμο για εσωτερικά μηνύματα" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "φόρτωση πακτωμένου περιβάλλοντος" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "αποτυχία: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Δεν επιλέχθηκε μεταγλωττιστής, θα χρησιμοποιηθεί ο προεπιλεγμένος: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "επιτυχία" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "ολοκλήρωση με προβλήματα" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "μεταγλώττιση %s, %s προειδοποίηση" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "μεταγλώττιση %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "η κλάση κόμβου %r έχει ήδη καταχωρηθεί, οι επισκέπτες της θα υπερσκελιστούν" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "η οδηγία %r έει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ο ρόλος %r έχει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -157,12 +152,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε από το δημιουργό της επέκτασης να το ελέγχει και να το κάνει σαφές" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -170,59 +165,64 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε το δημιουργό της επέκτασης να το ελέγξει και να το κάνει σαφές" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "εκτέλεση σειριακής %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "ο κατάλογος παραμετροποίησης δεν περιλαμβάνει κανένα αρχείο conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης καταλόγου %r, θα αγνοηθεί (χρησιμοποιήστε το %r για να καθορίσετε τα επιμέρους στοιχεία)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ανέγκυρος αριθμός %r για τιμή παραμετροποίησης %r, θα αγνοηθεί" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης %r με τύπο ο οποίος δεν υποστηρίζεται, θα αγνοηθεί" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "άγνωστη τιμή παραμετροποίσης %r στην υπερσκέλιση, θα αγνοηθεί" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Δεν υπάρχει τέτοια τιμή παραμετροποίησης: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Η τιμή παραμετροποίησης %r υφίσταται ήδη." -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Υπάρχει ένα συντακτικό λάθος στο αρχείο παραμετροποίησής σας: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Το αρχείο παραμετροποίησης (ή ένα από τα στοιχεία που εισάγει) κάλεσε την sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,57 +230,57 @@ msgid "" "%s" msgstr "Υπάρχει ένα προγραμματιστικό λάθος στο αρχείο παραμετροποίησής σας:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Η τιμή παραμτετροποίησης 'source_suffix' αναμένει στοιχειοσειρά, στοιχειοσειρά καταλόγου, ή λεξικό. Αλλά παραδόθηκε %r." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Τομέας %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Εικ. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Πίνακας %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Λίστα %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Η τιμή παραμετροποίησης '{name}' πρέπει να λαμβάνει μία από τις {candidates} αλλά εκχωρήθηκε η '{current}'." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Η τιμή παραμετροποίησης '{name]' έχει τύπο '[current__name__}'; αναμενόμενη {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Η τιμή παραμετροποίησης '{name}' έχει τύπο '{current__name__}', αρχικοποίηση σε '{default__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "το primary_domain %r δεν βρέθηκε, θα αγνοηθεί." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -619,7 +619,7 @@ msgstr "σε αναμονή για εργάτες..." msgid "docnames to write: %s" msgstr "docname προς εγγραφή: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "προετοιμασία κειμένων" @@ -811,7 +811,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "δεν βρέθηκε τιμή παραμετροποίησης \"man_pages\"; δεν θα καταγραφούν manual pages" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "εγγραφή" @@ -820,16 +820,16 @@ msgstr "εγγραφή" msgid "\"man_pages\" config value references unknown document %s" msgstr "η τιμή παραμετροποίησης \"man_pages\" κάνει αναφορά το άγνωστο κείμενο %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Η σελίδα HTML είναι στο %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "συναρμολόγηση απλού κειμένου" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "εγγραφή επιπρόσθετων αρχείων" @@ -2286,47 +2286,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "νέα παραμετροποίηση" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "η παραμετροποίηση άλλαξε" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "αλλαγμένες επεκτάσεις" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "η έκδοση του περιβάλλοντος μεταλώττισης δεν είναι η τρέχουσα" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "ο πηγαίος κατάλογος έχει αλλάξει" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Το περιβάλλον δεν είναι συμβατό με τον επιλεγμένο μεταγλωττιστή, παρακαλείστε να επιλέξετε ένα διαφορετικό κατάλογο toctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Αδυναμία σάρωσης εγγράφων σε %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Ο τομέας %r δεν είναι καταχωρημένος" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "Βρέθηκε αυτοαναφερόμενο toctree. Θα αγνοηθεί." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "το έγγραφο δεν συμπεριλαμβάνεται σε κανένα toctree" @@ -2701,42 +2701,42 @@ msgstr "σε σειρά latex %r: %s" msgid "Permalink to this equation" msgstr "Μόνιμος σύνδεσμος σε αυτή την εξίσωση" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "το απόθεμα intersphinx έχει μεταφερθεί: %s->%s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "φότωση του αποθέματος intersphinx από %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "παρουσιάστηκαν κάποια ζητήματα με μερικά απο τα αποθέματα, αλλά υπήρξαν λειτουργικές εναλλακτικές:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "αδυναμία προσέγγισης οποιασδήποτε αποθήκης με τα ακόλουθα ζητήματα:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(στη %s έκδοση %s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(στο %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "το αναγνωριστικό intersphinx %r δεν είναι στοιχειοσειρά. Θα αγνοηθεί" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2812,7 +2812,7 @@ msgstr "ανέγκυρη υπογραφή για αυτόματο %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "σφάλμα κατά τη μορφοποίηση των ορισμάτων για %s:%s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "απουσιάζει το χαρακτηριστικό %s στο αντικείμενο %s" @@ -2860,7 +2860,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2870,33 +2870,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Βάσεις: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2917,43 +2917,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "αδυναμία ανάλυσης ονόματος %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "αδυναμία εισαγωγής αντικειμένου %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3429,23 +3429,23 @@ msgid "" "translated: {1}" msgstr "ασυνεπείς αναφορές όρων στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "περισσότεροι από ένας στόχοι βρέθηκαν για 'οποιαδήποτε' παραπομπή %r: θα μπορούσε να είναι %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index c834b3afde7..d0e0dc28551 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 c83440116a8..e92766ce8fd 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 6773e9fc627..2bac7e9a150 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 a95f7167c8b..86826cb6813 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -25,135 +25,130 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "directorio de configuración no contiene un archivo conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "No se encuentra directorio fuente (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Directorio fuente y directorio destino no pueden ser idénticos" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Ejecutando Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, 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:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "creando directorio de salida" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "mientras configura la extensión %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'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:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "cargando traducciones [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "hecho" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "no disponible para mensajes incorporados" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "cargando el ambiente pickled" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "fallo: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Ningún constructor seleccionado, utilizando el valor predeterminado: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "éxitoso" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "finalizo con problemas" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "compilación %s, %sadvertencia (con advertencias tratadas como errores)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "compilación %s, %s advertencias (con advertencias tratadas como errores)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "construir %s, %s advertencia." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "compilación %s, %s advertencias." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "construir %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la clase de nodo %r ya está registrada, sus visitantes serán reemplazados" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directiva %r ya está registrada, esa se reemplazará" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "el rol %r ya está registrado, ese se reemplazará" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -161,12 +156,12 @@ msgid "" "explicit" msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "la extensión %s no es segura para lectura paralela" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -174,59 +169,64 @@ msgid "" "explicit" msgstr "la extensión %s no declara si es seguro para la escritura paralela, suponiendo que no lo sea - solicite al autor de la extensión que lo verifique y haga explicito" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "la extensión %s no es segura para escritura paralela" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "realizando serialmente %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "directorio de configuración no contiene un archivo conf.py (%s)" + +#: sphinx/config.py:197 #, 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:203 +#: sphinx/config.py:206 #, 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:208 +#: sphinx/config.py:211 #, 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:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuración desconocido %r en anulación, ignorando" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "No hay tal valor de configuración: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Valor de configuración %r ya presente" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Hay un error de sintaxis en su archivo de configuración: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "El archivo de configuración (o uno de los módulos que importa) invocó sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -234,57 +234,57 @@ msgid "" "%s" msgstr "Hay un error programable en su archivo de configuración:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "El valor de configuración `source_suffix' espera una cadena de caracteres, una lista de cadena de caracteres o un diccionario. Pero `%r' es dado." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Sección %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabla %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Lista %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "El valor de configuración `{name}` tiene que ser uno de {candidates}, pero fue dado `{current}`." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "El valor de configuración `{name}' tiene tipo `{current.__name__}'; esperado {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "El valor de configuración `{name}' tiene el tipo `{current.__name__}', el valor predeterminado es `{default.__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r no fue encontrado, se ignora." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -623,7 +623,7 @@ msgstr "Esperando a los workers..." msgid "docnames to write: %s" msgstr "docnames para escribir: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "preparando documentos" @@ -815,7 +815,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "no se encontró el valor de configuración \"man_pages\"; no se escribirán las páginas del manual" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "escribiendo" @@ -824,16 +824,16 @@ msgstr "escribiendo" msgid "\"man_pages\" config value references unknown document %s" msgstr "El valor de configuración \"man_pages\" hace referencia a un documento desconocido %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Página HTML está en %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "ensamblando documento sencillo" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "escribiendo archivos adicionales" @@ -2290,47 +2290,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "nueva configuración" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "configuración modificada" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "extensiones modificadas" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "la versión del entorno de compilación no es actual" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "directorio fuente ha cambiado" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Este entorno es incompatible con el generador seleccionado, elija otro directorio doctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Error al escanear los documentos en %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Dominio %r no está registrado" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "toctree auto referenciado encontrado. Ignorado." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "documento no está incluido en ningún toctree" @@ -2705,42 +2705,42 @@ msgstr "en línea latex %r: %s" msgid "Permalink to this equation" msgstr "Enlace permanente a esta ecuación" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "el inventario intersphinx se ha movido: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "cargando inventario intersphinx desde %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "encontró algunos problemas con algunos de los inventarios, pero tenían alternativas de trabajo:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "no se pudo llegar a ninguno de los inventarios con los siguientes problemas:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(en %s versión %s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(en %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "el identificador de intersphinx %r no es una cadena. Ignorado" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Error al leer intersphinx_mapping[%s], ignorado: %r" @@ -2816,7 +2816,7 @@ msgstr "firma inválida para auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "error al formatear argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "falta el atributo %s en el objeto %s" @@ -2864,7 +2864,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2874,33 +2874,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2921,43 +2921,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "Error al analizar type_comment para %r: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referencias autosummary excluidas documento %r. Ignorado." -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: no se encontró el archivo stub %r. Verifique su configuración de autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "fallo al analizar el nombre %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "fallo al importar el objeto %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: archivo no encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3433,23 +3433,23 @@ msgid "" "translated: {1}" msgstr "referencias de término inconsistentes en el mensaje traducido. original: {0}, traducido: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, 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:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index aeed8cc699b..d95c3b19f01 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 8a46da1a9ef..56232aa3a4b 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "seadistuste kataloog (%s) ei sisalda faili conf.py" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Lähtekataloogi (%s) pole võimalik leida" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Lähtekataloog ja sihtkataloog ei tohi olla identsed" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s käitamine" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, 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:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "väljundkataloogi loomine" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "tõlgete laadimine [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "valmis" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "serialiseeritud keskkonna laadimine" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "tõrge: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Ehitajat pole valitud, kasutatakse vaikimisi ehitajat: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "oli edukas" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "lõppes probleemidega" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "ehitamine %s, %s hoiatus." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "ehitamine %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "laiendus %s pole rööbiti lugemiseks turvaline" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "laiendus %s pole rööbiti kirjutamiseks turvaline" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "seadistuste kataloog (%s) ei sisalda faili conf.py" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "vigane arv %r seadistuse väärtusele %r, eiratakse" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Puudub määratud seadistusväärtus: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Seadistuste väärtus %r on juba olemas" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Sinu seadistusfailis on süntaksi viga: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Seadistusfail (või mõni selle poolt imporditud moodulitest) kutsus välja sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Sektsioon %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Joonis %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Nimekiri %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r ei leitud, eiratakse." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "dokumentide ettevalmistamine" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "seadistusparameetrit \"man_pages\" ei leitud, juhendi lehti ei kirjutata" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -821,16 +821,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "seadistusparameeter \"man_pages\" viitab tundmatule dokumendile %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML-leht asub kataloogis %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "täiendavate failide kirjutamine" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "See keskkond pole valitud ehitajaga ühilduv, palun vali mõni teine dokumendipuu kataloog." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "dokument pole ühegi sisukorrapuu osa" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Püsiviit sellele võrrandile" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(projektis %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Põlvnemine: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "tõrge objekti %s importimisel" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 85154347352..6044fc31e9b 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 d437c60a16b..756779e5cdd 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index b76dd809ebf..de37012184a 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 a6181c191eb..434df9b6d15 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 16:47+0000\n" "Last-Translator: Hadi F \n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "شاخه‌ی پیکربندی(%s)، پرونده‌ی conf.py را ندارد" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "شاخه‌ی منبع(%s) پیدا نشد." -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "نشانی (%s) شاخه نیست" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "شاخه‌های مبدأ و مقصد نمی توانند یکسان باشند" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "اجرای اسفینکس نگارش %s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "به دلایل امنیّتی، حالت موازی در macOS و پایتون 3.8 و جدیدتر از آن غیرفعّال است. برای جزئیّات بیشتر لطفاً این مقاله را بخوانید: https://github.com/sphinx-doc/sphinx/issues/6803" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "این پروژه دست که به افینکس نگارش%s نیاز دارد و برای همین با این نسخه قابل ساخت نیست." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "ایجاد پوشه ی برون داد" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "در حال راه اندازی افزونه‌ی%s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' آن طور که در conf.py تعریف شده شیئ قابل فراخوانی پایتون نیست. لطفاً تعریفش را تغییر دهید تا تابع قابل فراخوان پایتون شود. این کار لازمه‌ی conf.py است تا به عنوان افزنه‌ی اسفینکس کار کند." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "بارگذاری ترجمه ها [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "انجام شد" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "برای پیام‌های داخلی در دسترس نیست" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "بارگذاری محیط pckle شده" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "شکست خورد: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "هیچ سازنده‌ای برگزیده نشده، استفاده از قالب خروجی پیش‌فرض: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "موفّقیّت‌آمیز بود" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "انجام شد ولی با مشکل" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "ساخت %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "بست کلاس %r در حال حاضر ثبت نام شده است، بازدیدکنندگان این پیوند نادیده گرفته خواهد شد" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "دستور %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "نقش %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای خواندن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "افزونه ی %sبرای خواندن موازی امن نیست" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای نوشتن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "افزونه‌ی %s برای نوشتن موازی امن نیست" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "انجام چندباره‌ی %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "شاخه‌ی پیکربندی(%s)، پرونده‌ی conf.py را ندارد" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "امکان لغو تنظیمات پیکربندیdictionary %r ، نادیده گرفته می‌شود (برای تعیین تک تک عناصر %r را به کار ببرید)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "شماره نامعتبر %r برای پیکربندی مقدار %r، نادیده گرفته می‌شود" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "امکان لغو تنظیمات پیکربندی %r با نوع پشتیبانی نشده نبود، نادیده گرفته می‌شود" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "مقدار پیکربندی ناشناخته %r در ابطال، نادیده گرفته شد" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "چنین مقداری برای پیکربندی نبود: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "مقدار پیکربندی %r از قبل موجود است" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "خطای نحوی در پرونده‌ی پیکربندی شما وجود دارد: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "پرونده‌ی پیکربندی (یا یکی از ماژول هایی که وارد می کند) sys.exit() را فراخواند" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "یک خطای قابل برنامه ریزی در پرونده‌ی پیکربندی شما وجود دارد:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "مقدار پیکربندی 'source_suffix' انتظار یک رشته، لیست رشته ها، یا فرهنگ لغت را داشت. اما '%r' داده شده است." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "بخش%s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "شکل %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "فهرست %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "مقدار پیکربندی '{name}' باید یکی از {candidates} باشد، اما '{current}' داده شده." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، ولی انتظار می‌رفت {permitted} می‌بود." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، حالت پیش‌فرض {permitted} است." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "دامنه‌ی اصلی %r یافت نشد، نادیده گرفته می‌شوند." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "در انتظار برای ابزارهای کارگر..." msgid "docnames to write: %s" msgstr "نام مستندات برای نوشتن: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "آماده سازی اسناد" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "هیچ مقداری برای تنظیمات «صفحات راهنما» ا نشد؛ بنابراین هیچ صفحه‌ی راهنمایی نوشته نخواهد شد" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "در حال نوشتن" @@ -821,16 +821,16 @@ msgstr "در حال نوشتن" msgid "\"man_pages\" config value references unknown document %s" msgstr "پیکربندی مقدارهای «صفحات راهنما» به سند ناشناخته‌ای ارجاع می‌دهند %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "صفحه HTML در %(outdir)s است." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "سر جمع کرد تک سند" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "نوشتن پرونده‌های اضافی" @@ -2287,47 +2287,47 @@ msgstr "برچشب تعریف نشده: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "شکست در ایجاد ارجاع متقابل. عنوان یا زیرنویس پیدا نشد: %s" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "پیکربندی جدید" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "پیکربندی تغییر داده شد" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "افزونه‌ها تغییر کردند" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "نسخه‌ی محیط ساخت به‌روز نیست" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "شاخه ی منبع تغییر کرد" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "این محیط با سازنده‌ی انتخاب شده سازگار نیست، لطفاً یک خوشه‌ی اسناد دیگری را انتخاب کنید." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "پویش اسناد %s: %r شکست خورد" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "دامنه ی %r ثبت نشده" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "درختواره‌ی فهرست مطالب با ارجاع به خود پیدا شده. نادیده گرفته می‌شود." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "سند در هیچ درختواره‌ی فهرست مطالبی گنجانده نشده" @@ -2702,42 +2702,42 @@ msgstr "لتکس بین سطری: %r: %s" msgid "Permalink to this equation" msgstr "پیوند ثابت به این معادله" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "سیاهه‌ی بین اسفینکس جا به جایی را انجام داد: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "بارگذاری سیاهه‌ی بین اسفینکس از %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "مشکلاتی در برخی از سیاهه‌ها به وجود آمد،ولی این مشکلات راه‌های جایگزین های داشته‌اند:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "شکست در رسیدن به یکی از سیاهه‌ها به خاطر مشکلات زیر:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(در %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(در %s )" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "شناساگر بین اسفینکس %r رشته‌متن نیست. نادیده گرفته شد" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "شکست در خواندن intersphinx_mapping[%s]، نادیده گرفته می‌شود: %r" @@ -2813,7 +2813,7 @@ msgstr "امضای ناشناخته‌ برای %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "خطا در قالب بندی نشانوند برای %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "ویژگی ناموجود %s در شیئ %s" @@ -2861,7 +2861,7 @@ msgid "" msgstr "ویژگی نایاب در گزینه‌ی :members: قید شده: پیمانه‌ی:%s، ویژگی %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه پیدا نشد: %s" @@ -2871,33 +2871,33 @@ msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه msgid "Failed to get a constructor signature for %s: %s" msgstr "شکست در دریافت امضای سازنده‌ی شیئ برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "پایه ها:%s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "نام جانشین %s" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "نام جانشین نوع متغیر(%s)" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "شکست در دریافت امضای شگرد برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ نامعتبر در %sیدا شد و نادیده گرفته شد." -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "شکست در به روز رسانی امضا برای %r: مؤلّفه msgid "Failed to parse type_comment for %r: %s" msgstr "شکست در تحلیل نوع یادداشت برای %r: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "ارجاعات خلاصه‌ی خودکار سند %r حذف کنار گذاشته. نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "خلاصه‌ی خودکار: خرده‌پرونده‌ی %r پیدا نشد. تنظیمات تولید خلاصه‌ی خودکار(autosummary_generate) را بررسی کنید." -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "خلاصه‌ی خودکار عنوان‌ٔار نیازمند گزینه‌ی :toctree: است، نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "خلاصه‌ی خودکار: فراخوان %s شکست خورد" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "شکست در تجزیه تحلیل نام %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "شکست در وارد کردن شیئ %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "تولید خلاصه خودکار: پرونده پیدا نشد: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "ارجاعات اصطلاحی ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "امکان تشخیص متن جایگزین برای ارجاع متقابل نبود. شاید یک اشکال برنامه نویسی باشد." -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "برای «هر» ارجاع متقابل بیشتر از یک هفد پیدا شد: %r شاید %s باشد" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "%s:%s مرجع هدف پیدا نشد: %s" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "مقصد ارجاع %r پیدا نشد %s" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 7363e6512b9..d73e4838403 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 96c12c39691..acddf2fe05c 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 488a4adf2d3..024d108baa6 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 e9586ed708c..a1a9974fcd9 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -22,6 +22,7 @@ # Larlet David , 2008 # LAURENT Raphaël , 2018-2019 # 751bad527461b9b1a5628371fac587ce_51f5b30 <748bb51e7ee5d7c2fa68b9a5e88dc8fb_87395>, 2013-2014 +# Nicolas Friedli , 2021 # Nikolaj van Omme , 2014-2015 # Olivier Bonaventure , 2019 # Pierre Grépon , 2016 @@ -31,9 +32,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" -"PO-Revision-Date: 2021-05-11 13:54+0000\n" -"Last-Translator: Komiya Takeshi \n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"PO-Revision-Date: 2021-05-29 11:52+0000\n" +"Last-Translator: Nicolas Friedli \n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,135 +43,130 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "Le dossier de configuration ne contient pas de fichier conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Impossible de trouver le répertoire source (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Le répertoire de sortie (%s) n'est pas un répertoire" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Les dossiers source et destination ne doivent pas être identiques" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s en cours d'exécution" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "Pour des raisons de sécurité, le mode parallèle est désactivé sur macOS et python3.8 et plus. Pour plus de détails, veuillez lire https://github.com/sphinx-doc/sphinx/issues/6803" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ce projet nécessite au minimum Sphinx v%s et ne peut donc être construit avec cette version." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "création du dossier de destinataire" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "lors de l'initialisation de l'extension %s :" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'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:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "chargement des traductions [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "fait" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "traductions indisponibles" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "Chargement de l'environnement pickled" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "échec : %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Aucun constructeur sélectionné, utilisation du défaut : html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "a réussi" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "s'est terminée avec des problèmes" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "La compilation %s, %s avertissement (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "La compilation %s, %s avertissements (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "La compilation %s, %s avertissement." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "La compilation %s, %s avertissements." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "La compilation %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la classe de nœud %r est déjà enregistrée, ses visiteurs seront écrasés" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directive %r est déjà enregistrée, elle sera écrasée" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "le rôle %r est déjà enregistré, il sera écrasé" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -178,12 +174,12 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à la lecture en parallèle, on supposera qu’elle ne l'est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "l'extension %s n'est pas compatible avec les lectures parallèles" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -191,59 +187,64 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à l’écriture en parallèle, on supposera qu’elle ne l’est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "l'extension %s n'est pas compatible avec les écritures parallèles" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "sérialisation en cours %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "Le dossier de configuration ne contient pas de fichier conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "impossible d'écraser le dictionnaire de configuration %r ; ignoré (utilisez %r pour modifier les éléments individuellement)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nombre non valide %r pour l'option de configuration %r ; ignoré" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "impossible de remplacer le paramètre de configuration %r par un type non-supporté ; ignoré" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "paramètre de configuration %r inconnu dans override ; ignoré" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Option de configuration inexistante : %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "L'option de configuration %r est déjà présente" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Votre fichier de configuration comporte une erreur de syntaxe : %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Le fichier de configuration (ou un des modules qu'il utilise) génère un sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -251,57 +252,57 @@ msgid "" "%s" msgstr "Votre fichier de configuration comporte une erreur de programmation : \n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Le paramètre « source_suffix » s'attend à recevoir une chaîne de caractères, une liste de chaînes de caractères ou un dictionnaire. Mais vous avez fourni un « %r »." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Section %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tableau %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Code source %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "La valeur « {current} » du paramètre « {name} » ne figure pas dans la liste des possibilités valables « {candidates} »." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Le type du paramètre de configuration « {name} » doit être {permitted} et non « {current.__name__} »." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Le paramètre de configuration « {name} » a pour type « {current.__name__} », tandis que le type par défaut est « {default.__name__} »." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r non trouvé; ignoré." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -640,7 +641,7 @@ msgstr "En attente des processus parallélisés..." msgid "docnames to write: %s" msgstr "documents à écrire : %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "Document en préparation" @@ -684,7 +685,7 @@ msgstr "" #: sphinx/builders/_epub_base.py:504 msgid "writing content.opf file..." -msgstr "" +msgstr "enregistrement du fichier content.opf..." #: sphinx/builders/_epub_base.py:530 #, python-format @@ -693,7 +694,7 @@ msgstr "mimetype inconnu pour %s, il sera ignoré" #: sphinx/builders/_epub_base.py:677 msgid "writing toc.ncx file..." -msgstr "" +msgstr "enregistrement du fichier toc.ncx" #: sphinx/builders/_epub_base.py:702 #, python-format @@ -742,7 +743,7 @@ msgstr "Le fichier ePub se trouve dans %(outdir)s ." #: sphinx/builders/epub3.py:165 msgid "writing nav.xhtml file..." -msgstr "" +msgstr "enregistrement du fichier nav.xhtml..." #: sphinx/builders/epub3.py:191 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" @@ -832,7 +833,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "aucun valeur de configuration \"man_pages\" trouvée; aucun page du manuel ne sera enregistrée" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "enregistrement" @@ -841,16 +842,16 @@ msgstr "enregistrement" msgid "\"man_pages\" config value references unknown document %s" msgstr "le paramètre de configuration \"man_pages\" référence un document inconnu %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Les pages HTML sont dans %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "création du document unique" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "Enregistrement des fichiers supplémentaires" @@ -980,7 +981,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:810 msgid "copying static files" -msgstr "" +msgstr "copie des fichiers statiques" #: sphinx/builders/html/__init__.py:826 #, python-format @@ -1196,7 +1197,7 @@ msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" -msgstr "" +msgstr "Cela peut se produire avec des fichiers sources très volumineux ou profondément imbriqués. Vous pouvez augmenter avec attention la limite de récursivité par défaut de Python de 1000 dans conf.py avec p. ex. :" #: sphinx/cmd/build.py:71 msgid "Exception occurred:" @@ -2147,7 +2148,7 @@ msgstr "méthode statique" #: sphinx/domains/python.py:1098 msgid "property" -msgstr "" +msgstr "propriété" #: sphinx/domains/python.py:1156 #, python-format @@ -2280,7 +2281,7 @@ msgstr "le paramètre numfig est désactivé : le paramètre :numref: est ignor #: sphinx/domains/std.py:878 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" -msgstr "" +msgstr "Impossible de créer une référence croisée. Aucun nombre n'est attribué: %s" #: sphinx/domains/std.py:890 #, python-format @@ -2300,54 +2301,54 @@ msgstr "format de numfig_format invalide : %s" #: sphinx/domains/std.py:1120 #, python-format msgid "undefined label: %s" -msgstr "" +msgstr "lablel non défini: 1%s" #: sphinx/domains/std.py:1122 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" -msgstr "" +msgstr "Impossible de créer une référence croisée. Titre ou légende introuvable: %s" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "nouvelle configuration" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "la configuration a changé" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "les extensions ont changé" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "version non à jour de l’environnement de construction" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "le répertoire racine a changé" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Cet environnement est incompatible avec le constructeur sélectionné, veuillez choisir un autre répertoire doctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Échec du scan des documents dans %s : %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "le domaine %r n'est pas enregistré." -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "une table des matières auto-référencée a été trouvée. Elle sera ignorée." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "Le document n'est inclus dans aucune table des matières de l'arborescence." @@ -2560,17 +2561,17 @@ msgstr "le module %s ne pas être importé : %s" #: sphinx/ext/coverage.py:255 #, python-format msgid "undocumented python function: %s :: %s" -msgstr "" +msgstr "fonction python non documentée: %s :: %s" #: sphinx/ext/coverage.py:271 #, python-format msgid "undocumented python class: %s :: %s" -msgstr "" +msgstr "classe python non documentée: %s :: %s" #: sphinx/ext/coverage.py:284 #, python-format msgid "undocumented python method: %s :: %s :: %s" -msgstr "" +msgstr "méthode python non documentée: %s :: %s :: %s" #: sphinx/ext/doctest.py:123 #, python-format @@ -2722,42 +2723,42 @@ msgstr "latex en ligne %r : %s" msgid "Permalink to this equation" msgstr "Lien permanent vers cette équation" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "l’inventaire intersphinx a bougé : %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "chargement de l'inventaire intersphinx de %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "quelques problèmes ont été rencontrés avec quelques uns des inventaires, mais ils disposaient d'alternatives fonctionnelles :" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "échec d'accès à un quelconque inventaire, messages de contexte suivants :" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(disponible dans %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(dans %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "l’identifiant intersphinx %r n'est pas une chaîne. Il sera ignoré" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Échec de la lecture de intersphinx_mapping[%s]; ignoré : %r" @@ -2833,7 +2834,7 @@ msgstr "signature invalide pour auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "erreur pendant la mise en forme de l'argument %s:%s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "attribut manquant %s dans l'objet %s" @@ -2881,7 +2882,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2891,33 +2892,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Bases : %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" -msgstr "" +msgstr "alias de %s" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2938,43 +2939,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "Échec de l'analyse de type_comment pour %r : %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary fait référence au document exclu %r. Ignoré" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary : fichier stub non trouvé %r. Vérifiez votre paramètre autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "échec de l’analyse du nom %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "échec d’importation de l'object %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate : fichier nontrouvé : %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3450,23 +3451,23 @@ msgid "" "translated: {1}" msgstr "ncohérences de références de terme dans le message traduit. Original : {0}, traduit : {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "plus d'une cible trouvée pour la référence %r de type 'any' : pourrait être %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" @@ -3502,7 +3503,7 @@ msgstr "échoué" #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" -msgstr "" +msgstr "nom de rôle ou de directive inconnu: %s:%s" #: sphinx/util/i18n.py:67 #, python-format @@ -3517,7 +3518,7 @@ msgstr "erreur d'écriture : %s,%s" #: sphinx/util/i18n.py:98 #, python-format msgid "locale_dir %s does not exists" -msgstr "" +msgstr "le répertoire locale_dir %s n'existe pas" #: sphinx/util/i18n.py:192 #, python-format @@ -3553,7 +3554,7 @@ msgstr "Aucun ID assigné au node %s" #: sphinx/writers/html.py:411 sphinx/writers/html5.py:362 msgid "Permalink to this term" -msgstr "" +msgstr "Lien permanent vers ce terme" #: sphinx/writers/html.py:443 sphinx/writers/html5.py:394 msgid "Permalink to this table" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index c9a8ed1cff3..0cf074189c0 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 5e6ca2463b2..f8c1cd564ec 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index e632a082308..c833cc1ca32 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 22e207617dc..f3368b8e0ac 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "विन्यास निर्देशिका में कोन्फ़.पाय #conf.py# फाइल (%s) नहीं है " - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "स्रोत निर्देशिका (%s) नहीं मिली" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "स्रोत निर्देशिका और गंतव्य निर्देशिका समरूप नहीं हो सकतीं" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "स्फिंक्स %s संस्करण चल रहा है" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "इस परियोजना में स्फिंक्स का कम से कम %s संस्करण चाहिए और इसलिए इस संस्करण से बनाना संभव नहीं है." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "परिणाम निर्देशिका बनाई जा रही है" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "%s आयाम को स्थापित करते हुए:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'स्थापना' को जैसा कि अभी कोन्फ़.पाई में परिभाषित किया गया है, पाइथन से निर्देशित नहीं है. कृपया इसकी परिभाषा में परिवर्तन करके इसे निर्देश योग्य कर्म बनाएं. कोन्फ़.पाई को स्फिंक्स के आयाम की तरह व्यवहार के लिए इसकी आवश्कयता है." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "[%s] अनुवाद पढ़ा जा रहा है..." -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "संपन्न" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "अंतर्निर्मित संदेशों में उपलब्ध नहीं है" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "रक्षित स्थिति को लागू किया जा रहा है" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "असफल: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "किसी निर्माता को नहीं चुना गया, मानक उपयोग: एच्.टी.ऍम.एल." -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "सफल हुआ" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "समस्याओं के साथ समाप्त हुआ" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s निर्माण, चेतावनी %s (चेतावनी को गलती माने)| " -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "%s सम्पूर्ण, %s चेतावनी." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "%s निर्मित." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "निर्देशक कक्षा #node class# %r पहले से पंजीकृत है, इसके अभ्यागत निरस्त हो जाएंगे " -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "निर्देश %r पहले से पंजीकृत है, यह निरस्त हो जाएगा" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "भूमिका %r पहले से पंजीकृत है, यह निरस्त हो जाएगी" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर पाठन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "समानांतर पठन के लिए यह %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर लेखन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "समानांतर लेखन के लिए %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "%s पर काम कर रहे हैं" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "विन्यास निर्देशिका में कोन्फ़.पाय #conf.py# फाइल (%s) नहीं है " + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "शब्दकोष विन्यास मान %r की उल्लंघन नहीं किया जा सकता, अनदेखा किया गया (प्रत्येक अवयव का मान रखने के लिए %r का उपयोग करें)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "विन्यास मान %r के लिए अमान्य संख्या %r, अनदेखा किया गया" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "असमर्थित प्रकार के साथ विन्यास मान %r का उल्लंघन नहीं किया जा सकता, अनदेखा किया गया" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "आरोहण में अज्ञात विन्यास मान %r, अनदेखा किया गया" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "ऐसा कोई विन्यास मान नहीं है: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "विन्यास मान %r पहले से विद्यमान है" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "आपकी विन्यास फाइल में रचनाक्रम की त्रुटि है: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "विन्यास फाइल (अथवा इसके द्वारा आयातित प्रभागों) द्वारा sys.exit() का आह्वान किया गया" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "विन्यास फाइल में प्रोग्राम के योग्य त्रुटि है:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "विन्यास मान `source_suffix' में अक्षर-समूह, अक्षर-समूहों की सूची, अथवा कोष की अनुमति है. लेकिन `%r' दिया गया है." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "भाग %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "चित्र %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "सारणी %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "सूची %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "`{name}` विन्यास मान, {candidates} में से एक होना चाहिए, परन्तु `{current}` दिया गया है." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; अपेक्षित {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; मानक `{default.__name__}' का प्रयोग किया गया." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r नहीं मिला, अनदेखा किया गया." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "कर्मियों की प्रतीक्षा हो र msgid "docnames to write: %s" msgstr "लेखन के लिए शेष लेखपत्र: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "लेखपत्र बनाए जा रहे हैं" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "कोई \"man_pages\" विन्यास मान नहीं मिला; कोई नियमावली पृष्ठ नहीं लिखे जाएंगे" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "लिखा जा रहा है" @@ -821,16 +821,16 @@ msgstr "लिखा जा रहा है" msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "एच.टी.एम्.एल. पृष्ठ %(outdir)sमें है." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "एकल लेखपत्र संकलन किया जा रहा है" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "अतिरिक्त फाइलों को लिखा जा रहा है" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "नव विन्यास" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "विन्यास परिवर्तित" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "आयाम परिवर्तित" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "निर्मित परिस्थिति वर्तमान संस्करण नहीं है " -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "स्रोत निर्देशिका परिवर्तित हो चुकी है " -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "यह परिस्थिति चुने गए निर्माता से मेल नहीं खाती, कृपया दूसरी डॉक-ट्री निर्देशिका चुनें. " -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "लेखपत्रों के पर्यवेक्षण में असफलता %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "अधिकारक्षेत्र %r पंजीकृत नहीं है" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "स्वयं-संदर्भित विषय-सूची-संरचना मिली है. उपेक्षा की गई." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "लेखपत्र किसी भी विषय-सूची-संरचना में सम्मिलित नहीं है" @@ -2702,42 +2702,42 @@ msgstr "पंक्तिबद्ध लाटेक्स %r: %s" msgid "Permalink to this equation" msgstr "इस समीकरण की स्थायी कड़ी" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "इन्टरस्फिंक्स सामान स्थानांतरित हो चुका है: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "इन्टरस्फिंक्स सामान को %s से चढ़ाया जा रहा है ..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "कुछ चीजों के साथ कुछ समस्या है, लेकिन काम के दूसरे विकल्प उपलब्ध हैं: " -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "कुछ चीजों पहुँचने में असफलता मिली और यह समस्याएँ मिलीं: " -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s में)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(%s में)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "इन्टरस्फिंक्स निर्धारक %r अक्षरमाला नहीं है. उपेक्षित" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "स्वतः %s (%r) के लिए अमान्य हस्त msgid "error while formatting arguments for %s: %s" msgstr "%s के पदों का प्रारूप बनाने में व्यवधान: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "%s गुण %s वस्तु में अनुपस्थित" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "आधार: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "पद-विच्छेदन में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "विषय-वस्तु के आयात में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "अनुवादित संदेश में असंगत शब्द के प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "किसी भी पारस्परिक-सन्दर्भ के लिए एक से अधिक लक्ष्य मिले %r: %s संभव" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 16394273569..6f09689d177 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 1dbb729e42f..93b397e5273 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: hi_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 5512cce9ef8..524dc012ba0 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 369ac268d53..eaad67dc740 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: sphinx/application.py:159 -#, 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:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nema izvornog direktorija (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Izvorni i odredišni direktorij ne smiju biti jednaki" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Izrada pomoću Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, 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:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "izrada izlazne mape" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'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:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "učitavanje prijevoda [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "napravljeno" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "neuspješno: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Nije odabran format, koristi se zadani: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "uspješno" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "završeno uz probleme" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s upozorenje." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "u konfiguracijskom direktoriju ne postoji datoteka conf.py (%s)" + +#: sphinx/config.py:197 #, 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:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nepravilan broj %r za konf. vrijednost %r, zanemaruje se" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, 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:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nepoznata konfiguracijska vrijednost %r, zanemaruje se" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Ne postoji konfiguracijska vrijednost: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Konfiguracijska vrijednost %r već postoji" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Postoji sintaksna greška u konfiguracijskoj datoteci: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Poglavlje %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Slika %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tablica %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Ispis %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nije pronađen, zanemareno je." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Link na tu definiciju" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(u %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Osnovice: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, 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:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 0fec2d80be3..7a047dc733b 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 d2c0e9b8da9..9bab8d479a4 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -24,135 +24,130 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "a beállítási könyvtár nem tartalmaz conf.py fájlt (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nem található a forráskönyvtár (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "A forráskönyvtár és célkönyvtár nem lehet azonos" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx %s verzió futtatása" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ez a projekt legalább a Sphinx %s verzióját igényli, és emiatt nem állítható össze ezzel a verzióval." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "kimeneti könyvtár elkészítése" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "a(z) %s kiterjesztés beállításakor:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "A „setup”, ahogy jelenleg a conf.py fájlban meg van határozva, nem meghívható Python függvény. Módosítsa a meghatározását, hogy meghívható függvénnyé tegye. Ez ahhoz szükséges, hogy a conf.py Sphinx kiterjesztésként viselkedjen." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "fordítások betöltése [%s]…" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "kész" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "nem érhető el beépített üzenetekhez" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "pickle-t környezet betöltése" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "sikertelen: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Nincs összeállító kiválasztva, az alapértelmezett használata: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "sikerült" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "problémákkal befejeződött" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "%s összeállítás." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "a(z) %r csomópontosztály már regisztrálva van, a látogatói felül lesznek bírálva" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "a(z) %r direktíva már regisztrálva van, felül lesz bírálva" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -160,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -173,59 +168,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "a beállítási könyvtár nem tartalmaz conf.py fájlt (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "%s. bekezdés" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "%s. ábra" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "%s. táblázat" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "%s. felsorlás" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -622,7 +622,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -823,16 +823,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "forrás mappa megváltozott" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2704,42 +2704,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Állandó hivatkozás erre az egyenletre" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2815,7 +2815,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2873,33 +2873,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3432,23 +3432,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 9197dc1087f..8d373af8594 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 0dd7df48b12..1214badf227 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -23,135 +23,130 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "direktori konfigurasi tidak berisi berkas conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Tidak dapat menemukan direktori sumber (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Direktori sumber dan direktori tujuan tidak boleh sama" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Menjalankan Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Proyek ini memerlukan sedikitnya Sphinx v%s dan maka itu tidak bisa dibangun dengan versi ini." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "membuat direktori keluaran" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "saat menyiapkan ekstensi %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' yang saat ini didefinisikan pada conf.py bukanlah sebuah Python callable. Silakan modifikasi definisinya untuk membuatnya menjadi fungsi callable. Hal ini diperlukan guna conf.py berjalan sebagai ekstensi Sphinx." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "memuat terjemahan [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "selesai" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "tidak tersedia untuk built-in messages" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "memuat lingkungan yang diawetkan" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "gagal: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Tidak ada builder yang dipilih, menggunakan default: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "berhasil" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "selesai with masalah" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "bangun %s, %s peringatan (dengan peringatan dianggap sebagai kesalahan)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s peringatan." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "kelas simpul %r sudah terdaftar, pengunjungnya akan diganti" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "pengarahan %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "peran %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -159,12 +154,12 @@ msgid "" "explicit" msgstr "ekstensi %s tidak akan dinyatakan jika itu aman untuk pembacaan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "ekstensi %s tidak aman untuk pembacaan paralel" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -172,59 +167,64 @@ msgid "" "explicit" msgstr " \nekstensi %s tidak akan dinyatakan jika itu aman untuk penulisan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "ekstensi %s tidak aman untuk penulisan paralel" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "mengerjakan serial %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "direktori konfigurasi tidak berisi berkas conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "tidak dapat menulis ulang pengaturan direktori konfigurasi %r, mengabaikan (gunakan %r untuk mengatur elemen-elemen satuan)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nomor %r yang salah untuk konfigurasi nilai %r, mengabaikan" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "tidak dapat menulis ulang pengaturan konfigurasi %r dengan tipe yang tidak didukung, mengabaikan" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nilai konfigurasi %r yang tidak dikenal pada penulisan ulang, mengabaikan" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Tidak terdapat nilai konfigurasi demikian: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Nilai konfigurasi %r sudah ada" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ada kesalahan sintaksis dalam file konfigurasi Anda: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Berkas konfigurasi (atau salah satu dari modul terimpor) disebut sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,57 +232,57 @@ msgid "" "%s" msgstr "Terdapat kesalahan programmable dalam berkas konfigurasi anda:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Nilai konfigurasi `source_suffix 'mengharapkan sebuah string, daftar string, atau kamus. Tetapi `%r' diberikan." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Bab %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Gambar. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Daftar %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Nilai konfigurasi `{name}` harus salah satu dari {candidates}, tapi `{current}` diberikan." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Nilai konfigurasi `{name}' memiliki tipe `{current.__name__}'; diharapkan {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Nilai konfigurasi `{name}` bertipe `{current.__name__}', default menjadi `{default.__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r tidak ditemukan, diabaikan." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -621,7 +621,7 @@ msgstr "menunggu workers..." msgid "docnames to write: %s" msgstr "docnames yang akan ditulis: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "menyiapkan dokumen" @@ -813,7 +813,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "tidak ditemukan nilai konfigurasi \"man_pages\"; halaman manual tidak akan ditulis" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "penulisan" @@ -822,16 +822,16 @@ msgstr "penulisan" msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" nilai konfigurasi mengacu pada dokumen tidak diketahui %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Halaman HTML berada di %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "merakit dokumen tunggal" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "menulis file tambahan" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "konfigurasi baru" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "konfigurasi berubah" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "ekstensi berubah" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "membangun lingkungan bukan versi saat ini" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "direktori sumber telah berubah" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Lingkungan ini tidak kompatibel dengan pembangun yang dipilih, silakan pilih direktori doctree lain." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Gagal memindai dokumen dalam %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Domain %r tidak terdaftar" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "totree referensikan sendiri ditemukan. Diabaikan" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "dokumen tidak termasuk dalam toctree" @@ -2703,42 +2703,42 @@ msgstr "inline latex %r: %s" msgid "Permalink to this equation" msgstr "Tautan untuk persamaan ini" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "pengimpanan intersphinx telah dipindahkan: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "memuat penyimpanan intersphinx dari %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "mengalami beberapa masalah dengan beberapa inventaris, tetapi mereka memiliki alternatif berfungsi:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "gagal mencapai salah satu inventaris dengan masalah berikut:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(di %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(dalam %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "pengenal intersphinx %r bukan string. Diabaikan" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2814,7 +2814,7 @@ msgstr "tanda tangan tidak valid untuk outo %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "kesalahan saat memformat argumen untuk %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut hilang %s dalam objek %s" @@ -2862,7 +2862,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2872,33 +2872,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Basis: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2919,43 +2919,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "gagal mengurai nama %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "gagal mengimpor objek %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3431,23 +3431,23 @@ msgid "" "translated: {1}" msgstr "referensi istilah yang tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "lebih dari satu target ditemukan untuk referensi silang 'any' %r: bisa %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 3071d6edc3e..1591f14cd5c 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 5bfa8885d95..f6125cb0e70 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -23,135 +23,130 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "fatto" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "terminato con problemi" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -159,12 +154,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -172,59 +167,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,57 +232,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Sezione %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabella %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Listato %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "il primary_domain %r non è stato trovato, tralasciato." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -621,7 +621,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -813,7 +813,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -822,16 +822,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2703,42 +2703,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Permalink a questa equazione" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2814,7 +2814,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2862,7 +2862,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2872,33 +2872,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr " Basi: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2919,43 +2919,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3431,23 +3431,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 5004069ef67..0f82b3b022a 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 396c921f230..7bcdf35bc4d 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -33,135 +33,130 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "conf.py が設定ディレクトリに存在しません (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "ソースディレクトリが存在しません (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "出力先ディレクトリにはソースディレクトリと異なるディレクトリを指定してください" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s を実行中" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "このプロジェクトはSphinx v%s以降のバージョンでなければビルドできません。" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "出力先ディレクトリを作成しています" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "拡張機能のセットアップ中 %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "conf.pyにある'setup'はPythonのcallableではありません。定義を修正してcallableである関数にしてください。これはconf.pyがSphinx拡張として動作するのに必要です。" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "翻訳カタログをロードしています [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "完了" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "翻訳が用意されていません" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "保存された環境データを読み込み中" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "失敗: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "ビルダーが選択されていないので、デフォルトの html を使用します" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "完了(問題あり)" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "ビルド %s, %s warning." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "ビルド %s, %s 警告." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "ビルド %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "nodeクラス %r は既に登録されています。visitor関数は上書きされます" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "ディレクティブ %r は既に登録されています。ディレクティブは上書きされます" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ロール %r は既に登録されています。ロールは上書きされます" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -169,12 +164,12 @@ msgid "" "explicit" msgstr "拡張 %s は並列読み込みが可能かどうかを宣言していないため、おそらく並列読み込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s拡張は並列読み込みに対して安全ではありません" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -182,59 +177,64 @@ msgid "" "explicit" msgstr "拡張 %s は並列書き込みが可能かどうかを宣言していないため、おそらく並列書き込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s拡張は並列書き込みに対して安全ではありません" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "直列で %sします" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "conf.py が設定ディレクトリに存在しません (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "設定値の辞書 %r は上書きないため無視されました (%r を使って個別に設定してください)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "%r は設定値 %r の正しい値ではないため無視されました" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "%r は正しい型ではないため無視されました" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "不明な設定値 %r による上書きは無視されました" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "%s という設定値はありません" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "設定値 %r は既に登録済みです" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "設定ファイルに文法エラーが見つかりました: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "設定ファイル(あるいはインポートしたどれかのモジュール)がsys.exit()を呼びました" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -242,57 +242,57 @@ msgid "" "%s" msgstr "設定ファイルにプログラム上のエラーがあります:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "設定値 `source_suffix' に `%r' が指定されましたが、文字列、文字列のリスト、辞書、のいずれかを指定してください。" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "%s 章" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "図 %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "リスト %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr " 設定値 `{name}` に `{current}` が指定されましたが、 {candidates} のいずれかを指定してください。" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されていますが、 {permitted} 型を指定してください。" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されています。デフォルト値は `{default.__name__}' です。" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r が見つかりません。無視します。" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -631,7 +631,7 @@ msgstr "ワーカーの終了を待っています..." msgid "docnames to write: %s" msgstr "書き込むdocname: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "preparing documents" @@ -823,7 +823,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "設定値 \"man_pages\" が見つかりません。マニュアルページは書かれません" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "書き込み中" @@ -832,16 +832,16 @@ msgstr "書き込み中" msgid "\"man_pages\" config value references unknown document %s" msgstr "設定値 \"man_pages\" が不明なドキュメント %s を参照しています" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML ページは%(outdir)sにあります。" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "ドキュメントを1ページにまとめています" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "追加のファイルを出力" @@ -2298,47 +2298,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "新しい設定" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "変更された設定" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "変更された拡張" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "ビルド環境のバージョンが最新ではありません" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "ソースディレクトリが変更されました" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "この環境は選択したビルダーと互換性がありません。別の doctree ディレクトリーを選択してください。" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s のドキュメントをスキャンできませんでした: %r " -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "ドメイン %r はまだ登録されていません" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "自己参照している toctree が見つかりました。無視します。" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "ドキュメントはどの toctree にも含まれていません" @@ -2713,42 +2713,42 @@ msgstr "latex のインライン表示 %r: %s" msgid "Permalink to this equation" msgstr "この数式へのパーマリンク" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx インベントリは移動しました: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s から intersphinx インベントリをロード中..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "いくつかのインベントリでいくつかの問題に遭遇しましたが、代替手段を持っていました:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "以下の問題があるため、いくつかのインベントリは到達できませんでした:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx 識別子 %r は文字列ではありません。無視します" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "intersphinx_mapping [%s] の読み取りに失敗しました。無視します: %r" @@ -2824,7 +2824,7 @@ msgstr "auto%s (%r) の署名が無効です" msgid "error while formatting arguments for %s: %s" msgstr "%sの引数のフォーマット中にエラーが発生しました: %s " -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "オブジェクト %s に属性 %s がありません" @@ -2872,7 +2872,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2882,33 +2882,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "ベースクラス: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2929,43 +2929,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "%rのtype_commentを解析できませんでした: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary は除外したドキュメント %r を参照しています。無視されます。" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: stubファイルが見つかりません%r。autosummary_generate設定を確認してください。" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "%sの名前を解析できませんでした " -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "%sオブジェクトをインポートできませんでした " -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: ファイルが見つかりません: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3441,23 +3441,23 @@ msgid "" "translated: {1}" msgstr "翻訳されたメッセージの用語参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, 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:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 3e8c9f5a10e..4c136546b76 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 f5c6ca411ad..3ab4695c4cc 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-12 23:47+0000\n" "Last-Translator: YT H \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "설정 디렉토리에 conf.py 파일이 없습니다 (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "원본 디렉토리를 찾을 수 없습니다 (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "출력 디렉토리 %s은(는) 디렉토리가 아닙니다." -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "원본 디렉토리와 대상 디렉토리는 같을 수 없습니다" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx 버전 %s 실행 중" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "보안상의 이유로 macOS의 Python 3.8 버전 이상에서는 병렬 모드가 비활성화되어 있습니다. 자세한 내용은 https://github.com/sphinx-doc/sphinx/issues/6803 을 참조하십시오" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "이 프로젝트는 최소 Sphinx 버전 %s이(가) 필요하므로 현재 버전으로 빌드할 수 없습니다." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "출력 디렉토리 만드는 중" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "확장 기능 %s 설정 중:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "현재 conf.py 파일에 정의된 'setup'은 호출 가능한 Python 객체가 아닙니다. 호출 가능한 함수가 되도록 정의를 수정하십시오.\n이것은 conf.py가 Sphinx 확장 기능으로 동작하는 데 필요합니다." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "번역을 불러오는 중 [%s]… " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "완료" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "기본 제공 메시지를 사용할 수 없습니다" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "pickle로 저장된 환경을 불러오는 중" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "실패: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "선택한 빌더가 없으므로, 기본값인 html을 사용합니다" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "성공" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "완료했으나 문제점 발견" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "빌드 %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "%r 노드 클래스가 이미 등록되어 있으며, 방문자를 무시합니다" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "%r 지시문이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "%r 역할이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 읽기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 확장 기능은 병렬 읽기에 안전하지 않습니다" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 쓰기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 확장 기능은 병렬 쓰기에 안전하지 않습니다" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "병렬 %s 처리" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "설정 디렉토리에 conf.py 파일이 없습니다 (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "Dictionary 구성 설정 %r을(를) 재정의할 수 없으며, 무시합니다 (개별 요소를 설정하기 위해 %r 사용)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "숫자 %r이(가) 설정값 %r에 대해 유효하지 않으며, 무시합니다" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "지원되지 않는 유형의 구성 설정 %r을(를) 재정의 할 수 없으며, 무시합니다" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "재정의 중 알 수 없는 설정값 %r, 무시합니다" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "해당 설정값이 없습니다: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "설정값 %r이(가) 이미 존재합니다" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "구성 파일에 구문 오류가 있습니다: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "구성 파일(또는 가져온 모듈 중 하나)에서 sys.exit()을 호출했습니다" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "구성 파일에 프로그램 오류가 있습니다:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "설정값 'source_suffix'는 문자열, 문자열의 목록 또는 dictionary를 예상합니다. 그러나 `%r'이(가) 지정되었습니다." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "제 %s 절" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "그림 %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "표 %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "예시 %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "설정값 `{name}`은(는) {candidates} 중 하나여야 하지만, `{current}`이(가) 지정되었습니다." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, {permitted} 유형을 기대했습니다." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, 기본값은 `{default.__name__}'입니다." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r(이)가 없으므로, 무시합니다." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "작업자를 기다리는 중…" msgid "docnames to write: %s" msgstr "기록할 문서 이름: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "문서 준비 중" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "\"man_pages\" 설정값이 없으므로, 매뉴얼 페이지를 작성하지 않습니다" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "작성 중" @@ -819,16 +819,16 @@ msgstr "작성 중" msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" 설정값이 알 수 없는 문서 %s을(를) 참조합니다" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML 페이지는 %(outdir)s에 있습니다." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "단일 문서 조합 중" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "추가 파일 작성 중" @@ -2285,47 +2285,47 @@ msgstr "정의되지 않은 레이블: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "상호 참조를 생성하지 못했습니다. 제목 또는 캡션을 찾을 수 없습니다: %s" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "새로운 설정" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "설정이 변경됨" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "확장 기능이 변경됨" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "빌드 환경 버전이 최신이 아님" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "원본 디렉토리가 변경됨" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "이 환경은 선택한 빌더와 호환되지 않습니다. 다른 doctree 디렉토리를 선택하십시오." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s에서 문서를 탐색하지 못했습니다: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "%r 영역이 등록되지 않았습니다" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "자체 참조된 toctree가 발견되었습니다. 무시합니다." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "문서가 어느 toctree에도 포함되어 있지 않음" @@ -2700,42 +2700,42 @@ msgstr "인라인 LaTeX %r: %s" msgid "Permalink to this equation" msgstr "이 수식에 대한 퍼머링크" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx 인벤토리가 이동함: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s 에서 intersphinx 인벤토리 로드 중…" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "일부 인벤토리에서 몇 가지 문제가 발생했지만, 동작하는 대체 인벤토리로 처리했습니다:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "다음 문제가 있어 어느 인벤토리도 도달하지 못했습니다:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s에서)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(%s에서)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx 식별자 %r이(가) 문자열이 아닙니다. 무시합니다" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "intersphinx_mapping[%s]을(를) 읽지 못했으며, 무시합니다: %r" @@ -2811,7 +2811,7 @@ msgstr "auto%s (%r)에 대한 잘못된 서명" msgid "error while formatting arguments for %s: %s" msgstr "%s에 대한 인수를 서식화하는 동안 오류 발생: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "%s 속성이 %s 객체에 없음" @@ -2859,7 +2859,7 @@ msgid "" msgstr ":members: 옵션에 언급된 속성이 없습니다: 모듈 %s, 속성 %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s" @@ -2869,33 +2869,33 @@ msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "%s에 대한 생성자 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "기반 클래스: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "%s의 별칭" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s)의 별칭" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "%s에 대한 메소드 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "%s에서 잘못된 __slots__ 가 발견되었습니다. 무시합니다." -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "%r에 대한 서명을 업데이트하지 못했습니다. 매개변수 msgid "Failed to parse type_comment for %r: %s" msgstr "%r에 대한 type_comment를 해석하지 못했습니다: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary가 제외된 문서 %r을(를) 참조합니다. 무시합니다." -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: 스텁 파일 %r을(를) 찾을 수 없습니다. autosummary_generate 설정을 확인하십시오." -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "캡션이 있는 자동 요약에는 :toctree: 옵션이 필요합니다. 무시합니다." -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "autosummary: %s을(를) import 하지 못했습니다" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "이름 %s을(를) 해석하지 못함" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "객체 %s을(를) import 하지 못함" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 파일을 찾을 수 없음: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "번역된 메시지의 용어 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "상호 참조에 대한 대체 텍스트를 결정할 수 없습니다. 버그일 수 있습니다." -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "'any' 상호 참조 %r에 대해 둘 이상의 대상이 발견되었습니다: %s 일 수 있습니다" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "%s:%s 참조 대상을 찾을 수 없음: %s" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "%r 참조 대상을 찾을 수 없음: %s" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 1c4aaab590a..263db0082c1 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 da46703e6b3..a9a3880c490 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index e9238d480ad..0f920f99b2c 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 b34b79b689f..a18e7c3a7ba 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index c1c661f0d36..e12a24d1a72 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 3d7d66bccc7..a578bffa2de 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index de33710fb56..5c6b769cf58 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 5695bbc8ea8..997aa2d8365 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 9e17cf0cb7b..2322fb3c8b9 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 2fff9270cd2..82b91a667f5 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index a566b8feccf..45267a63037 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 e8695fa920a..38f8544edd7 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -24,135 +24,130 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "configuratiemap bevat geen conf.py bestand (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kan bronmap niet vinden (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Bron- en doelmap kunnen niet identiek zijn" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s start op" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, 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:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "aanmaken doelmap" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' gedefinieerd in conf.py is niet aanroepbaar (geen Python-callable). Pas a.u.b. de definitie aan zodat het een oproepbare functie wordt. Dit is nodig voor conf.py om zich als een Sphinx extensie te gedragen." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "laden van vertalingen [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "klaar" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "mislukt: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Geen bouwer geselecteerd, dus de standaardbouwer wordt gebruikt: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "gelukt" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "afgerond met problemen" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "bouwen %s, %s waarschuwing." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "bouwen %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -160,12 +155,12 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel lezen, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -173,59 +168,64 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel schrijven, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "seriële verwerking van %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "configuratiemap bevat geen conf.py bestand (%s)" + +#: sphinx/config.py:197 #, 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:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ongeldig getal %r voor configuratiewaarde %r, wordt genegeerd" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, 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:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "onbekende configuratiewaarde %r tijdens overschrijven, wordt genegeerd" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Ongeldige configuratiewaarde: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Configuratiewaarde %r was reeds aangevoerd" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "Een fout heeft zich voorgedaan in uw configuratiebestand:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Sectie %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Codefragment %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r onbekend, wordt genegeerd." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -622,7 +622,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -823,16 +823,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "bronmap is gewijzigd" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2704,42 +2704,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Permalink naar deze formule" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2815,7 +2815,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2873,33 +2873,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Basisklassen: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3432,23 +3432,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, 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:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 727411122b0..96889e64b7c 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 100e3ff43cc..ddc76d9fe44 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: sphinx/application.py:159 -#, 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:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nie odnaleziono katalogu źródłowego (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Katalog źródłowy i katalog docelowy nie mogą być identyczne" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Uruchamianie Sphinksa v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, 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:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "tworzenie katalogu wyjścia" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "podczas ustawiania rozszerzenia %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'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:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "ładowanie tłumaczeń [%s]..." -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "gotowe" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "niedostępne dla wbudowanych wiadomości" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "ładowanie zapakowanego środowiska" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "nie powiodło się: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Nie wybrano buildera, używamy domyślnego: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "udało się" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "zakończono z problemami" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s ostrzeżenie." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "dyrektywa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do czytania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenie o sprawdzenie i zadeklarowania tego wprost" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do pisania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenia o sprawdzenie i zadeklarowanie tego wprost" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "tworzenie serii %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "folder konfiguracyjny nie zawiera pliku conf.py (%s)" + +#: sphinx/config.py:197 #, 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:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "niepoprawna liczba %r dla wartości konfiguracji %r, ignorowanie" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, 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:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nieznana wartość konfiguracji %r w nadpisaniu, ignorowanie" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Nie ma takiej wartości konfiguracyjnej: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Wartość konfiguracji %r już podana" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "W twoim piku konfiguracyjnym jest błąd składniowy: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 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:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "W twoim piku konfiguracyjnym jest błąd programowalny: \n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Rozdział %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Rys. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 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:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "Nie odnaleziono primary_domain %r, zignorowano." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -821,16 +821,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Strona HTML jest w %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "nowa konfiguracja" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "konfiguracja zmieniona" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "rozszerzenie zmienione" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "katalog źródłowy został zmieniony" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Domena %r nie jest zarejestrowana" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Stały odnośnik do tego równania" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(w %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr " (w %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "błąd podczas formatowania argumentów dla %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "brakujący atrybut %s w obiekcie %s" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Klasy bazowe: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, 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:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index ad2423bd1e7..1dc865960bd 100644 Binary files a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index a99b254b60a..154b8907a77 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index f6c88559513..1df9de28631 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 2e667c6aa36..d4b1a7a8a8d 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -24,135 +24,130 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "o diretório de configuração não contém um arquivo conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Não foi possível encontrar o diretório de origem (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "O diretório de saída (%s) não é um diretório" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Diretório de origem e o diretório de destino não podem ser idênticos" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Executando Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "Por motivos de segurança, o modo paralelo está desabilitado no macOS e python3.8 e acima. Para mais detalhes, leia https://github.com/sphinx-doc/sphinx/issues/6803" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Este projeto precisa de pelo menos Sphinx v%s e, portanto, não pode ser compilado com esta versão." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "criando o diretório de saída" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "enquanto definia a extensão %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "“setup”, conforme definido atualmente em conf.py, não é um invocável do Python. Modifique sua definição para torná-la uma função que pode ser chamada. Isso é necessário para o conf.py se comportar como uma extensão do Sphinx." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "carregando traduções [%s]… " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "feito" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "não disponível para mensagens internas" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "carregando ambiente com pickle" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "falha: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Nenhum compilador selecionado, usando padrão: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "bem-sucedida" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "finalizada com problemas" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "compilação %s, %s aviso. (com avisos tratados como erros)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "compilação %s, %s avisos (com avisos tratados como erros)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "compilação %s, %s aviso." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "compilação %s, %s avisos." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "compilação %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "classe de nodo %r já está registrada, seus visitantes serão sobrescritos" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "diretiva %r já está registrada, ela será sobrescrita" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "papel %r já está registrado, ele será sobrescrito" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -160,12 +155,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para leitura em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "a extensão %s não é segura para leitura em paralelo" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -173,59 +168,64 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para escrita em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "a extensão %s não é segura para escrita em paralelo" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "fazendo serial %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "o diretório de configuração não contém um arquivo conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "não foi possível sobrescrever a configuração do dicionário %r ignorando (use %r para definir elementos individuais)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "número inválido %r para valor de configuração %r, ignorando" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "não é possível sobrescrever a configuração %r com tipo sem suporte, ignorando" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuração desconhecido %r na sobrescrita, ignorando" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Valor de configuração inexistente: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Valor da configuração %r já presente" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Há um erro de sintaxe em seu arquivo de configuração: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "O arquivo de configuração (ou um dos módulos que ele importa) chamou sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "Há um erro de programável em seu arquivo de configuração:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "O valor da configuração “source_suffix” espera uma string, lista de strings ou dicionário. Mas “%r” é fornecido." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Seção %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Listagem %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "O valor da configuração “{name}” deve ser um entre {candidates}, mas “{current}” é fornecido." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "O valor da configuração “{name}” possui tipo “{current.__name__}”; esperava {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "O valor da configuração “{name}” possui tipo “{current.__name__}”; o padrão é “{default.__name__}”." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r não encontrado, ignorado." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -622,7 +622,7 @@ msgstr "aguardando por workers…" msgid "docnames to write: %s" msgstr "docnames para escrever: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "preparando documentos" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "nenhum valor de configuração “man_pages” encontrado; nenhuma página de manual será escrita" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "escrevendo" @@ -823,16 +823,16 @@ msgstr "escrevendo" msgid "\"man_pages\" config value references unknown document %s" msgstr "o valor da configuração “man_pages” faz referência a um documento desconhecido %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "A página HTML está em %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "montando documento único" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "escrevendo arquivos adicionais" @@ -2289,47 +2289,47 @@ msgstr "rótulo não definido: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "Falha ao criar uma referência cruzada. Título ou legenda não encontrado: %s" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "nova configuração" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "configuração alterada" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "extensões alteradas" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "a versão do ambiente de compilação não é a atual" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "diretório de fontes foi alterado" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Este ambiente é incompatível com o compilador selecionado, por favor escolha outro diretório de doctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Falha ao procurar documentos em %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "O domínio %r ainda não está registrado" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "toctree autorreferenciada encontrada. Ignorado." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "o documento não está incluído em nenhum toctree" @@ -2704,42 +2704,42 @@ msgstr "latex em linha %r: %s" msgid "Permalink to this equation" msgstr "Link permanente para essa equação" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "o inventário intersphinx foi movido: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "carregando inventário intersphinx de %s…" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "encontrados alguns problemas com alguns dos inventários, mas eles tem alternativas em funcionamento:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "falha ao alcançar todos os inventários com os seguintes problemas:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(em %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identificador intersphinx %r não é uma string. Ignorado" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Falha ao ler intersphinx_mapping[%s], ignorado: %r" @@ -2815,7 +2815,7 @@ msgstr "assinatura inválida para auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "erro ao formatar argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "faltando atributo %s no objeto %s" @@ -2863,7 +2863,7 @@ msgid "" msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Falha ao obter uma assinatura de função para %s: %s" @@ -2873,33 +2873,33 @@ msgstr "Falha ao obter uma assinatura de função para %s: %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "Falha ao obter uma assinatura de construtor para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Base: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "apelido de %s" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "apelido de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Falha ao obter uma assinatura de método para %s: %s" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ inválido encontrado em %s. Ignorado." -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "Falha ao atualizar a assinatura para %r: parâmetro não encontrado: %s" msgid "Failed to parse type_comment for %r: %s" msgstr "Falha ao analisar type_comment para %r: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referências de autosummmary excluíram o documento %r. Ignorado." -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: arquivo stub não encontrado %r. Verifique sua configuração autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Um autosummary com legenda requer a opção :toctree:. Ignorado." -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "autosummary: falha ao importar %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "falha ao analisar o nome %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "falha ao importar o objecto %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: arquivo não encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3432,23 +3432,23 @@ msgid "" "translated: {1}" msgstr "referências de termo inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "Não foi possível determinar o texto reserva para a referência cruzada. Pode ser um bug." -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "mais de um alvo localizado para “any” referência cruzada %r: poderia ser %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "%s:alvo de referência %s não encontrado: %s" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "alvo de referência %r não encontrado: %s" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 98a44d56237..6dca5d54a5e 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 b1b68218f18..29789689248 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 83af0d291cc..b5cb42063ab 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 a8c100b5d19..f4170716d64 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, 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:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "eșuat: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "a reușit" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "a fost finalizat cu probleme" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabelul %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Cod %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(în %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index fba050f86bc..a4cc81cd082 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 e0560b45918..d161221158b 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -24,135 +24,130 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "в конфигурационной папке нет файла conf.py file (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Проект требует версию Sphinx не ниже v%s и не может быть построен текущей версией." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "готово" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "ошибка: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Сборщик не указан, по умолчанию используется html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "с ошибками" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "сборка завершена %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -160,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -173,59 +168,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "в конфигурационной папке нет файла conf.py file (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Отсутствует ключ конфигурации %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Ключ конфигурации %r уже существует" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Файл конфигурации (или один из импортированных модулей) вызвал sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "В вашем файле конфигурации программная ошибка:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Раздел %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Рис. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Таблица %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Список %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -622,7 +622,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -823,16 +823,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "новая конфигурация" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "конфигурация изменена" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2704,42 +2704,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Ссылка на это уравнение" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(в %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2815,7 +2815,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2873,33 +2873,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr " Базовые классы: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3432,23 +3432,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index ab0e3c692df..90a511730a8 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 927f308f980..ced19e4fddf 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(%s හි%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index c7f85b02987..0d74f315953 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 fe386dca207..5e22a66f881 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -21,135 +21,130 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" -#: sphinx/application.py:159 -#, 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:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nemožno nájsť zdrojový priečinok (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Výstupný adresár (%s) nie je adresár" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Zdrojový a cieľový priečinok nemôžu byť rovnaké" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Spúšťanie Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "Z bezpečnostných dôvodov je paralelný režim na macOS s Python3.8 a novším vypnutý. ďalšie podrobnosti nájdete v https://github.com/sphinx-doc/sphinx/issues/6803" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, 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:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "vytváranie výstupnej zložky" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "pri nastavovaní rozšírenia %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'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:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "načítanie prekladov [%s]…" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "hotovo" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "nedostupné pre zabudované správy" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "načítanie uloženého prostredia " -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "zlyhalo: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Nebol zvolený builder, bude použitý predvolený: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "úspešné" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "dokončené sproblémami" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "zostavenie %s, %s upozornenie." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "zostavenie %s, %s upozornenie/a." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "zostavenie %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "trieda uzla %r už je registrovaná, jej metódy (visitors) budú prepísané" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktíva %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -157,12 +152,12 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladá sa, že nie - prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -170,59 +165,64 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladáme, že nie je – prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "sériové spracovanie %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "konfiguračný priečinok neobsahuje súbor conf.py (%s)" + +#: sphinx/config.py:197 #, 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:203 +#: sphinx/config.py:206 #, 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:208 +#: sphinx/config.py:211 #, 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:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "neznáma konfiguračná hodnota %r v prepísaní, ignorované" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Neznáma konfiguračná hodnota: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Konfiguračná hodnota %r už existuje" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Vo svojom konfiguračnom súbore máte chybu: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 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:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,57 +230,57 @@ msgid "" "%s" msgstr "V konfiguračnom súbore je programová chyba:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Konfiguračná hodnota „source_suffix” očakáva reťazec, zoznam reťazcov alebo slovník, ale zadali ste „%r”." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Sekcia %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabuľka %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Konfiguračná hodnota `{name}` má byť jedno z {candidates}, ale je zadané `{current}`." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Konfiguračná hodnota `{name}' má typ `{current.__name__}'; očakávané {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Konfiguračná hodnota `{name}' má typ `{current.__name__}', predvolene `{default.__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nenájdená, ignorované." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -619,7 +619,7 @@ msgstr "čakanie na procesy…" msgid "docnames to write: %s" msgstr "mená dokumentov na zapísanie: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "príprava dokumentov" @@ -811,7 +811,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "nebola nájdená konfiguračná voľba „man_pages”; manuálové stránky nebudú zapísané" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "zapisovanie" @@ -820,16 +820,16 @@ msgstr "zapisovanie" msgid "\"man_pages\" config value references unknown document %s" msgstr "konfiguračná voľba „man_pages” odkazuje na neznámy dokument %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Stránky HTML sú v %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "zostavovanie spoločného dokumentu" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "zapisovanie dodatočných súborov" @@ -2286,47 +2286,47 @@ msgstr "nedefinovaná menovka: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "Zlyhalo vytvorenie krížového odkazu. nenájdení názov alebo titulok: %s" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "nová konfigurácia" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "zmenená konfigurácia" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "zmenené rozšírenie" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "prostredie zostavenia nie je aktuálne" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "zdrojový adresár zmenený" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Toto prostredie nie je kompatibilné zo zvoleným zostavovačom, prosím, zvoľte iný adresár doctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Zlyhalo skenovanie dokumentov v %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Doména %r nie je zaregistrovaná" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "nájdený na seba odkazujúci strom obsahu. Ignorované." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "dokument nie je zahrnutý v žiadnom strome obsahu" @@ -2701,42 +2701,42 @@ msgstr "vnorený latex %r: %s" msgid "Permalink to this equation" msgstr "Trvalý odkaz na tento vzorec" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "inventár intersphinx bol presunutý: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "načítanie inventára intersphinx z %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "nastali problémy s niektorými inventármi, ale boli nájdené funkčné alternatívy:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "nemožno získať žiadne inventáre kvôli týmto problémom:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(v %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identifikátor intersphinx %rnie je raťzec, ignorované" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Zlyhalo čítanie intersphinx_mapping[%s], ignorované: %r" @@ -2812,7 +2812,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "chyba formátovania argumentov %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "chýba atribút %s objektu %s" @@ -2860,7 +2860,7 @@ msgid "" msgstr "chýbajúci atribút spomenutý vo voľbe :members: : modul %s, atribút %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2870,33 +2870,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Základ: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "alias pre %s" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias pre TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "Neplatné __slots__ nájdené v %s. Ignorované." -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2917,43 +2917,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Autosummary s popiskom vyžaduje voľbu :toctree: , ignorované." -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "zlyhalo spracovanie mena %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "zlyhal import objektu %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: súbor nenájdený: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3429,23 +3429,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, 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:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "%r cieľ odkazu nenájdený: %s" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 4b52c6c2725..b8a24138d94 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 ceee6252e8b..7c1d9df3030 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 08e8e70f5b8..2c5b9cf1067 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 4.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 04:47+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,135 +17,130 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and" " above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with" " this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,60 +161,65 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called " "sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but " "`{current}` is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -823,16 +823,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2301,47 +2301,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose" " another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2716,42 +2716,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had " "working alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2827,7 +2827,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2875,7 +2875,7 @@ msgid "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2885,33 +2885,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of " "\"alphabetic\". Please update your setting." @@ -2932,43 +2932,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does " "not contain .rst. Skipped." @@ -3446,23 +3446,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a" " bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index beb41e4e172..3f3c38679cf 100644 Binary files a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 20cf95a1671..cd596f005f7 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 16:11+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "drejtoria e formësimeve nuk përmban një kartelë conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "S’gjendet dot drejtori burim (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Drejtoria e përfundimeve (%s) s’është drejtori" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Drejtoria burim dhe drejtoria vendmbërritje s’mund të jenë identike" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Po xhirohet Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "Për arsye sigurie, mënyra paralele është e çaktivizuar në macOS dhe python3.8 dhe më sipër. Për më tepër hollësi, ju lutemi, lexoni https://github.com/sphinx-doc/sphinx/issues/6803" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ky projekt lyp të paktën Sphinx v%s, ndaj s’mund të montohet me këtë version." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "po krijohet drejtori përfundimesh" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "teksa ujdiset zgjerimi %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' siç është përcaktuar aktualisht te conf.py s’është funksion Python që mund të thirret. Ju lutemi, ndryshojeni përcaktimin e tij që ta bëni një funksion që mund të thirret. Kjo është e nevojshme që conf.py të sillet si një zgjerim Sphinx." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "po ngarkohen përkthime [%s]… " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "u bë" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "s’është i passhëm për mesazhe të brendshëm" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "dështoi: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "S’u përzgjodh montues, po përdoret parazgjedhja: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "doli me sukses" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "u përfundua me probleme" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "montimi %s, % sinjalizim (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "montimi %s, %s sinjalizime (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s warning." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "montimi %s, %s sinjalizime." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "montimi %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r e nyjeve është e regjistruar tashmë, vizitorët e saj do të anashkalohen" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktiva %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "roli %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për lexim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "zgjerimi %s s’është i sigurt për lexim paralel" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për shkrim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "zgjerimi %s s’është i sigurt për shkrim paralel" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "drejtoria e formësimeve nuk përmban një kartelë conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "s’mund të anashkalohet rregullim formësimi fjalorthi %r, po shpërfillet (për të ujdisur elemente individuale, përdorni %r)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "numër %r i pavlefshëm për vlerë formësimi %r, po shpërfillet" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "s’mund të anashkalohet rregullim formësimi %r me një lloj të pambuluar, po shpërfillet" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "vlerë e panjohur formësimi %r te anashkalimi, po shpërfillet" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "S’ka vlerë të tillë formësimi: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Vlerë formësimi %r e pranishme tashmë" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ka një gabim sintakse te kartela juaj e formësimit: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Kartela e formësimit (ose një nga modulet që ajo importon) thirri sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "Ka një gabim të programueshëm te kartela juaj e formësimit:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Vlera e formësimit `source_suffix' pret një varg, një listë vargjesh, ose një fjalor. Por është dhënë `%r'." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Ndarja %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Vlera e formësimit `{name}` duhet të jetë një nga {candidates}, por është dhënë `{current}`." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}'; pritej {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}', si parazgjedhje merr `{default.__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "s’u gjet primary_domain %r, po shpërfillet." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "po pritet për workers…" msgid "docnames to write: %s" msgstr "emra dokumentesh për shkrim: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "po përgatiten dokumente" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "s’u gjet vlerë formësimi \"man_pages\"; s’do të shkruhet ndonjë faqe doracaku" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "po shkruhet" @@ -818,16 +818,16 @@ msgstr "po shkruhet" msgid "\"man_pages\" config value references unknown document %s" msgstr "vlera e formësimit \"man_pages\" i referohet një dokumenti të panjohur %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Faqja HTML gjenden në %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "po montohet dokument njësh" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "po shkruhen kartela shtesë" @@ -2284,47 +2284,47 @@ msgstr "etiketë e papërcaktuar: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "formësim i ri" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "formësimi ndryshoi" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "zgjerimet u ndryshuan" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "version jo i tanishëm i mjedisit të montimit" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "drejtoria burim ka ndryshuar" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Ky mjedis është i papërputhshëm me montuesin e përzgjedhur, ju lutemi, zgjidhni një tjetër drejtori doctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "S’u arrit të skanohen dokumente te %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Përkatësia %r s’është e regjistruar" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "U gjet “toctree” që i referohet vetes. U shpërfill." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "dokumenti s’është i përfshirë në ndonjë toctree" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Permalidhje te ky ekuacion" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "inventari intersphinx është lëvizur: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "po ngarkohet inventari intersphinx prej %s…" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "u hasën disa probleme me disa nga inventare, por kishin alternativa funksionale:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "s’u arrit të kapej ndonjë inventar me problemet vijuese:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(te %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(te %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identifikuesi intersphinx %r s’është varg. U shpërfill" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "S’u arrit të lexohej intersphinx_mapping[%s], u shpërfill: %r" @@ -2810,7 +2810,7 @@ msgstr "nënshkrim i pavlefshëm për auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "gabim gjatë formatimi argumentesh për %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut %s që mungon te objekt %s" @@ -2858,7 +2858,7 @@ msgid "" msgstr "u përmend atribut që mungon në :members: mundësi: modul %s, atributi %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "S’u arrit të merret një nënshkrim funksioni për %s: %s" @@ -2868,33 +2868,33 @@ msgstr "S’u arrit të merret një nënshkrim funksioni për %s: %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "S’u arrit të merrej nënshkrim konstruktori për %s: %s" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Baza: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "alias për %s" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias për TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "S’u arrit të merre një nënshkrim metode për %s: %s" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "U gjet __slots__ i pavlefshëm në %s. U shpërfill." -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "S’u arrit të përditësohet nënshkrim për %r: s’u gjet parametër msgid "Failed to parse type_comment for %r: %s" msgstr "S’u arrit të përtypet type_comment për %r: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "vetëpërmbledhje: s’u arrit të importohej %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "s’u arrit të përtypej emri %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "s’u arrit të importohej objekti %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: s’u gjet kartelë: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "referenca citimi pa njëtrajtësi, te mesazhi i përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "u gjet më shumë se një objektiv për ndërreferencën 'any' %r: mund të ishte %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "s’u gjet objektiv reference %s:%s: %s" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "s’u gjet objektiv reference %r: %s" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 5c3b26072b9..888f2432ee4 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 d23052ccfc5..96309e13ee7 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "Конфигурациони директоријум не садржи conf.py датотеку (%s)." - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Нема изворног директоријума (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Изворни и одредишни директоријум не могу бити једнаки" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Покрећем Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Овај пројекат захтева верзију Sphinx v%s или већу, не може се изградити инсталираном верзијом." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "учитавање превода [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "готово" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "Неуспешно: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "са грешкама" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "Конфигурациони директоријум не садржи conf.py датотеку (%s)." + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Одељак %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Сл. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Табела %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Списак %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "припремање докумената" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(у %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(у %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 86a56ef6799..9045d1e23fd 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 2ea054ec2d6..7cb77749eaa 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index b5b7b636403..785186ef4fd 100644 Binary files a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 9998d53ec8f..8104561bc1c 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: sr_RS\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index e197e746809..b1f0faeec1a 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 1cecd364838..501377f99c4 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 5278bd4e978..7113d210c13 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 66c788a95cc..d71e6e14238 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 93bbd34a868..a0ed5ce4304 100644 Binary files a/sphinx/locale/te/LC_MESSAGES/sphinx.mo and b/sphinx/locale/te/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index e0975fb7245..29620f809e1 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 6cfcc591745..3b6d10942d3 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 0e0771580ef..9c0e87ba5b2 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "config dizini bir conf.py dosyası içermiyor (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kaynak dizin bulunamıyor (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Kaynak dizin ve hedef dizin aynı olamaz" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx s%s çalışıyor" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Bu proje en az Sphinx s%s gerektirir ve bu nedenle bu sürüm ile oluşturulamaz." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "çıktı dizini yapılıyor" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "%s uzantısı ayarlanırken:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "Şu anda conf.py dosyasında tanımlanan 'kurulum' çağrılabilir bir Python değil. Lütfen tanımını çağrılabilir bir işlev yapmak için değiştirin. Bunun, Sphinx uzantısı gibi davranması için conf.py dosyasına ihtiyacı vardır." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "çeviriler yükleniyor [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "bitti" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "yerleşik iletiler için kullanılamaz" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "derin temizlenen ortam yükleniyor" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "başarısız olan: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Seçilen oluşturucu yok, varsayılan kullanılıyor: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "başarılı oldu" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "sorunlarla tamamlandı" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hata olarak kabul edilen uyarılarla)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hatalar olarak kabul edilen uyarılarla)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "yapım %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "düğüm sınıfı %r zaten kayıtlı, ziyaretçileri geçersiz kılınacaktır" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "yönerge %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rol %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "%s uzantısı paralel okuma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s uzantısı paralel okuma için güvenli değil" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "%s uzantısı paralel yazma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s uzantısı paralel yazma için güvenli değil" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "%s seri nosu yapılıyor" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "config dizini bir conf.py dosyası içermiyor (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "sözlük yapılandırma ayarı %r geçersiz kılınamaz, yoksayılıyor (tek tek öğeleri ayarlamak için %r kullanın)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "geçersiz sayı %r; yapılandırma değeri %r için; yoksayılıyor" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "desteklenmeyen tür ile yapılandırma ayarı %r geçersiz kılınamaz, yoksayılıyor" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "geçersiz kılmada bilinmeyen yapılandırma değeri %r, yoksayılıyor" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Böyle bir yapılandırma değeri yok: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Yapılandırma değeri %r zaten mevcut" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Yapılandırma dosyanızda bir sözdizimi hatası var: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Yapılandırma dosyası (veya içe aktarılan modüllerden biri) sys.exit() olarak adlandırılır" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "Yapılandırma dosyanızda programlanabilir bir hata var:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "'source_suffix' yapılandırma değeri bir dizgi, dizgiler listesi ya da sözlük bekler. Ama '%r' verilir." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Bölüm %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Şekil %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tablo %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Listeleme %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "`{name}` yapılandırma değeri, {candidates} geğerlrinden biri olmak zorundadır, ancak `{current}` değeridir." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "`{name}' yapılandırma değeri `{current.__name__}' türüne sahip; beklenen {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "`{name}' yapılandırma değeri `{current.__name__}' türüne sahip, vassayılanları `{default.__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r bulunamadı, yoksayıldı." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "çalışanlar için bekleniyor..." msgid "docnames to write: %s" msgstr "yazmak için belge adları: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "belgeler hazırlanıyor" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "hiçbir \"man_pages\" yapılandırma değeri bulunamadı; hiçbir rehber sayfası yazılmayacaktır" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "yazılıyor" @@ -821,16 +821,16 @@ msgstr "yazılıyor" msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" yapılandırma değeri bilinmeyen %s belgesine başvurur" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML sayfası %(outdir)s içinde." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "tek bir belgede toplanıyor" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "ilave dosyalar yazılıyor" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "yeni yapılandırma" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "yapılandırma değişti" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "uzantılar değişti" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "yapım ortamı sürümü şu anki değil" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "kaynak dizin değişti" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Bu ortam seçilen oluşturucuyla uyumsuzdur, lütfen başka bir belge ağacı dizini seçin." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s içinde belgeleri tarama başarısız oldu: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Etki alanı %r kayıtlı değil" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "kendinden kaynaklı toctree bulundu. Yoksayıldı." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "belge herhangi bir toctree içine dahil değil" @@ -2702,42 +2702,42 @@ msgstr "satır içi latex %r: %s" msgid "Permalink to this equation" msgstr "Bu denklem için kalıcı bağlantı" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx envanteri taşındı: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s konumundan intersphinx envanteri yükleniyor..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "aşağıdaki sorunlardan dolayı envanterlerden herhangi birine ulaşılamadı:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s içinde)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(%s içinde)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 8049e076107..be25d2a86b3 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 6c58384f429..acfe52242c6 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: uk_UA\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 2b6b3f27d25..db84d4ae470 100644 Binary files a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 927d77f038d..ee2397930cb 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 228dc79187f..1669ddefd4d 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 5d606be1f86..8e16d497c6c 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index e6c1a720162..59077901f83 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 9df5f4dd43f..fd4a55fd5ad 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-16 04:38+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -33,135 +33,130 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "配置目录中缺少 conf.py 文件 (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "无法找到源码目录 (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "源文件目录和目标目录不能是同一目录" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "正在运行 Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "该项目需要 Sphinx v%s 及以上版本,使用现有版本不能构建文档。" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "创建输出目录" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "同时设置扩展名 %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "当前 conf.py 中定义的 'setup' 不是一个可调用的 Python 对象。请把其定义改为一个可调用的函数。Sphinx 扩展的 conf.py 必须这样配置。" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "正在加载翻译 [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "完成" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "没有内置信息的翻译" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "加载 pickled环境" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "失败:%s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "未选择构建程序,默认使用:html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "完成但存在问题" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "构建 %s,%s 警告(将警告视为错误)。" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "构建 %s,%s 警告(将警告视为错误)。" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "构建 %s, %s 警告。" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "构建 %s,%s 警告。" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "构建 %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "节点类 %r 已注册,其访问者将被覆盖" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "指令 %r 已注册,将被覆盖" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "角色 %r 已注册,将被覆盖" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -169,12 +164,12 @@ msgid "" "explicit" msgstr "扩展 %s 没有声明是否并行读取安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "扩展 %s 不是并行读取安全的" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -182,59 +177,64 @@ msgid "" "explicit" msgstr "%s 扩展没有声明是否并行写入安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "扩展 %s 不是并行写入安全的" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "执行顺序 %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "配置目录中缺少 conf.py 文件 (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "不能覆盖字典配置项 %r,已忽略 (请用 %r 设置单个字典元素)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "无效的数值 %r 用于配置项 %r,已忽略" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "配置项 %r 覆盖值类型不支持,已忽略" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "覆盖中包含未知配置项 %r ,已忽略" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "不存在的配置项:%s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "配置项 %r 已存在" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "配置文件中存在语法错误: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "配置文件(或配置文件导入的模块)调用了 sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -242,57 +242,57 @@ msgid "" "%s" msgstr "配置文件中有程序上的错误:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "配置值\"source_后缀\"需要字符串、字符串列表或字典。但给出\"%r\"。" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "节 %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "图 %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "列表 %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "配置项 `{name}` 必须设置为 {candidates} 之一,但现在是 `{current}` 。" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "配置值\"[name]\"的类型为\"[当前._name];但\"当前\"为\"当前\"。\"当前\"为\"当前\"。\"当前\"为\"当前\"。=================================预期 [允许]。" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "配置项 `{name}' 的类型是 `{current.__name__}',默认为 `{default.__name__}'。" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "未找到 primary_domain %r,已忽略。" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -631,7 +631,7 @@ msgstr "等待工作线程……" msgid "docnames to write: %s" msgstr "写入文档:%s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "准备文件" @@ -823,7 +823,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "未找到“man_pages”配置项,不会写入手册页" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "写作" @@ -832,16 +832,16 @@ msgstr "写作" msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\"配置值引用未知文档 %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML 页面保存在 %(outdir)s 目录。" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "组装单一文档" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "写入其他文件" @@ -2298,47 +2298,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "新配置" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "配置有变化" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "扩展有变化" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "构建环境版本与当前环境不符" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "源文件目录已变化" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "本环境与选择的构建器不兼容,请选择其他的文档树目录。" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "在 %s 中扫描文档失败:%r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "没有注册 %r 域" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "目录树存在自引用,已忽略。" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "文档没有加入到任何目录树中" @@ -2713,42 +2713,42 @@ msgstr "内联 LaTeX %r:%s" msgid "Permalink to this equation" msgstr "公式的永久链接" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx库存已被移动: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "从中加载intersphinx库存 %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "遇到了一些库存问题,但他们有其他工作方式:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "访问对象清单时报错:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(在 %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(在 %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "跨 Sphinx 标识 %r 不是字符串,已忽略" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "无法读取intersphinx_mapping[%s],忽略:%r" @@ -2824,7 +2824,7 @@ msgstr "无效的 auto%s 签名(%r)" msgid "error while formatting arguments for %s: %s" msgstr "格式化 %s 参数时报错:%s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "属性 %s 不存在,在对象 %s 上" @@ -2872,7 +2872,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2882,33 +2882,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "基类:%s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2929,43 +2929,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary 引用了排除的文档 %r。已忽略。" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary:无法找到根文件 %r。检查你的 autosummary_generate 设置。" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "无法解析名称 %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "无法导入对象 %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate:无法找到文件 %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3441,23 +3441,23 @@ msgid "" "translated: {1}" msgstr "译文中的术语引用与原文不一致。原始为:{0},翻译后为:{1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "找到了多个目标 'any' 交叉引用的目标不唯一 %r: 可能是 %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index f42c9e9c21d..383a1ca56ce 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 8e9681bc746..a079348b204 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -24,135 +24,130 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "本專案需要 Sphinx v%s 版本以上,故無法以現版本編譯。" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "目前在 conf.py 裡指定的 'setup' 並非一個 Python 的可呼叫物件。請修改它並使它成為一個可呼叫的函式。若要使 conf.py 以 Sphinx 擴充套件的方式運作,這個修改是必須的。" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "完成" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "失敗:%s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "沒有指定 builder,使用預設:html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "完成問題" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -160,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -173,59 +168,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "段落 %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "圖 %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "程式 %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "找不到 primary_domain:%r,略過。" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -622,7 +622,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -823,16 +823,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2704,42 +2704,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "本公式的永久連結" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(於 %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2815,7 +2815,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2873,33 +2873,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "基礎類別:%s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3432,23 +3432,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/themes/pyramid/layout.html b/sphinx/themes/pyramid/layout.html index 33d9bb7d127..ffa93135e19 100644 --- a/sphinx/themes/pyramid/layout.html +++ b/sphinx/themes/pyramid/layout.html @@ -9,11 +9,11 @@ {% endblock %} {% block header %} -{%- if logo %} +{%- if logo_url %} diff --git a/sphinx/util/compat.py b/sphinx/util/compat.py index 9be80358eb8..73ca5bc2700 100644 --- a/sphinx/util/compat.py +++ b/sphinx/util/compat.py @@ -25,11 +25,14 @@ def register_application_for_autosummary(app: "Sphinx") -> None: """ if 'sphinx.ext.autosummary' in sys.modules: from sphinx.ext import autosummary - autosummary._app = app + if hasattr(autosummary, '_objects'): + autosummary._objects['_app'] = app # type: ignore + else: + autosummary._app = app # type: ignore def setup(app: "Sphinx") -> Dict[str, Any]: - app.connect('builder-inited', register_application_for_autosummary) + app.connect('builder-inited', register_application_for_autosummary, priority=100) return { 'version': 'builtin', diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index f216e87978b..23dd9e9307f 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -442,14 +442,14 @@ def object_description(object: Any) -> str: (object_description(key), object_description(object[key])) for key in sorted_keys) return "{%s}" % ", ".join(items) - if isinstance(object, set): + elif isinstance(object, set): try: sorted_values = sorted(object) except TypeError: pass # Cannot sort set values, fall back to generic repr else: return "{%s}" % ", ".join(object_description(x) for x in sorted_values) - if isinstance(object, frozenset): + elif isinstance(object, frozenset): try: sorted_values = sorted(object) except TypeError: @@ -457,6 +457,9 @@ def object_description(object: Any) -> str: else: return "frozenset({%s})" % ", ".join(object_description(x) for x in sorted_values) + elif isinstance(object, enum.Enum): + return "%s.%s" % (object.__class__.__name__, object.name) + try: s = repr(object) except Exception as exc: @@ -838,16 +841,25 @@ def getdoc(obj: Any, attrgetter: Callable = safe_getattr, if ispartial(obj) and doc == obj.__class__.__doc__: return getdoc(obj.func) elif doc is None and allow_inherited: - doc = inspect.getdoc(obj) - - if doc is None and cls and name: - # inspect.getdoc() does not support some kind of inherited and decorated methods. - # This tries to obtain the docstring from super classes. - for basecls in getattr(cls, '__mro__', []): + if cls and name: + # Check a docstring of the attribute or method from super classes. + for basecls in getmro(cls): meth = safe_getattr(basecls, name, None) if meth is not None: - doc = inspect.getdoc(meth) - if doc: + doc = attrgetter(meth, '__doc__', None) + if doc is not None: break + if doc is None: + # retry using `inspect.getdoc()` + for basecls in getmro(cls): + meth = safe_getattr(basecls, name, None) + if meth is not None: + doc = inspect.getdoc(meth) + if doc is not None: + break + + if doc is None: + doc = inspect.getdoc(obj) + return doc diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index 52ec0c2d43c..e66f066d4d4 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -477,23 +477,11 @@ def test_optional_pyfunction_signature(app): def test_pyexception_signature(app): - text = ".. py:exception:: exceptions.IOError" - doctree = restructuredtext.parse(app, text) - assert_node(doctree, (addnodes.index, - [desc, ([desc_signature, ([desc_annotation, "exception "], - [desc_addname, "exceptions."], - [desc_name, "IOError"])], - desc_content)])) - assert_node(doctree[1], desc, desctype="exception", - domain="py", objtype="exception", noindex=False) - - -def test_exceptions_module_is_ignored(app): - text = (".. py:exception:: IOError\n" - " :module: exceptions\n") + text = ".. py:exception:: builtins.IOError" doctree = restructuredtext.parse(app, text) assert_node(doctree, (addnodes.index, [desc, ([desc_signature, ([desc_annotation, "exception "], + [desc_addname, "builtins."], [desc_name, "IOError"])], desc_content)])) assert_node(doctree[1], desc, desctype="exception", diff --git a/tests/test_util_inspect.py b/tests/test_util_inspect.py index dd9bd14a3dd..2f805a87a89 100644 --- a/tests/test_util_inspect.py +++ b/tests/test_util_inspect.py @@ -10,6 +10,7 @@ import ast import datetime +import enum import functools import sys import types @@ -516,6 +517,14 @@ def __repr__(self): assert ": 2" in description +def test_object_description_enum(): + class MyEnum(enum.Enum): + FOO = 1 + BAR = 2 + + assert inspect.object_description(MyEnum.FOO) == "MyEnum.FOO" + + def test_getslots(): class Foo: pass @@ -674,7 +683,10 @@ def func1(a, b, c): def test_getdoc_inherited_decorated_method(): class Foo: def meth(self): - """docstring.""" + """ + docstring + indented text + """ class Bar(Foo): @functools.lru_cache() @@ -683,7 +695,7 @@ def meth(self): pass assert inspect.getdoc(Bar.meth, getattr, False, Bar, "meth") is None - assert inspect.getdoc(Bar.meth, getattr, True, Bar, "meth") == "docstring." + assert inspect.getdoc(Bar.meth, getattr, True, Bar, "meth") == Foo.meth.__doc__ def test_is_builtin_class_method():