diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2022-02-14 03:03:40 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2022-02-14 03:03:40 +0900 |
commit | 8b23f6db12d9fcdb6e1ca2015ea32e3e2e1fbdb6 (patch) | |
tree | 45c07e0a74fcace45cfb43d7491bab9a98f88087 | |
parent | d7c6fa853ce433640331deab837b3a0c0edb3c9d (diff) | |
parent | 07110b7557a552ecfe702bdd6a2d2f9685cb1af9 (diff) | |
download | sphinx-git-8b23f6db12d9fcdb6e1ca2015ea32e3e2e1fbdb6.tar.gz |
Merge commit '07110b7557a552ecfe702bdd6a2d2f9685cb1af9'
137 files changed, 7381 insertions, 6399 deletions
@@ -88,12 +88,17 @@ Deprecated Features added -------------- +* #10125: extlinks: Improve suggestion message for a reference having title * #9494, #9456: html search: Add a config variable :confval:`html_show_search_summary` to enable/disable the search summaries Bugs fixed ---------- +* #10133: autodoc: Crashed when mocked module is used for type annotation +* #10122: sphinx-build: make.bat does not check the installation of sphinx-build + command before showing help + Testing -------- diff --git a/doc/extdev/appapi.rst b/doc/extdev/appapi.rst index 7c331382c..fc92a775c 100644 --- a/doc/extdev/appapi.rst +++ b/doc/extdev/appapi.rst @@ -298,7 +298,9 @@ Here is a more detailed list of these events. Emitted when a cross-reference to an object cannot be resolved even after :event:`missing-reference`. If the event handler can emit warnings for - the missing reference, it should return ``True``. + the missing reference, it should return ``True``. The configuration variables + :confval:`nitpick_ignore` and :confval:`nitpick_ignore_regex` prevent the + event from being emitted for the corresponding nodes. .. versionadded:: 3.4 diff --git a/doc/usage/extensions/autosummary.rst b/doc/usage/extensions/autosummary.rst index ac7bbd68f..ffdba86c4 100644 --- a/doc/usage/extensions/autosummary.rst +++ b/doc/usage/extensions/autosummary.rst @@ -255,7 +255,7 @@ Autosummary uses the following Jinja template files: - :file:`autosummary/attribute.rst` -- template for class attributes - :file:`autosummary/method.rst` -- template for class methods -The following variables available in the templates: +The following variables are available in the templates: .. currentmodule:: None @@ -300,7 +300,7 @@ The following variables available in the templates: .. data:: functions List containing names of "public" functions in the module. Here, "public" - here means that the name does not start with an underscore. Only available + means that the name does not start with an underscore. Only available for modules. .. data:: classes diff --git a/sphinx/ext/autodoc/mock.py b/sphinx/ext/autodoc/mock.py index 36b2836f3..7bd0b1ea0 100644 --- a/sphinx/ext/autodoc/mock.py +++ b/sphinx/ext/autodoc/mock.py @@ -154,6 +154,11 @@ def mock(modnames: List[str]) -> Generator[None, None, None]: finder.invalidate_caches() +def ismockmodule(subject: Any) -> bool: + """Check if the object is a mocked module.""" + return isinstance(subject, _MockModule) + + def ismock(subject: Any) -> bool: """Check if the object is mocked.""" # check the object has '__sphinx_mock__' attribute diff --git a/sphinx/ext/extlinks.py b/sphinx/ext/extlinks.py index 096c6e21a..dae407cfb 100644 --- a/sphinx/ext/extlinks.py +++ b/sphinx/ext/extlinks.py @@ -36,7 +36,7 @@ import sphinx from sphinx.application import Sphinx from sphinx.locale import __ from sphinx.transforms.post_transforms import SphinxPostTransform -from sphinx.util import logging +from sphinx.util import logging, rst from sphinx.util.nodes import split_explicit_title from sphinx.util.typing import RoleFunction @@ -65,6 +65,7 @@ class ExternalLinksChecker(SphinxPostTransform): return uri = refnode['refuri'] + title = refnode.astext() for alias, (base_uri, _caption) in self.app.config.extlinks.items(): uri_pattern = re.compile(base_uri.replace('%s', '(?P<value>.+)')) @@ -73,7 +74,11 @@ class ExternalLinksChecker(SphinxPostTransform): # build a replacement suggestion msg = __('hardcoded link %r could be replaced by an extlink ' '(try using %r instead)') - replacement = f":{alias}:`{match.groupdict().get('value')}`" + value = match.groupdict().get('value') + if uri != title: + replacement = f":{alias}:`{rst.escape(title)} <{value}>`" + else: + replacement = f":{alias}:`{value}`" logger.warning(msg, uri, replacement, location=refnode) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo Binary files differindex 8f0ddedfa..a9baddae7 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index f23e40cf5..36fb7e45b 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "تحميل الترجمات [ %s ]" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "تم" @@ -194,27 +194,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -222,57 +222,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "قسم %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r لتم يتم العثور عليه، لهذا تم تجاهلة" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -495,17 +495,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -630,7 +630,7 @@ msgstr "تجهيز المستندات" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "نسخ الصور..." @@ -640,7 +640,7 @@ msgstr "نسخ الصور..." msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -788,22 +788,22 @@ msgstr "قراءة القوالب" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -888,8 +888,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -899,7 +899,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "ملفات الXML موجودة في %(outdir)s" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -920,7 +920,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -934,144 +934,144 @@ msgstr "الفهرس العام" msgid "index" msgstr "الفهرس" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "التالي" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "السابق" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "إنشاء الفهرس" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "كتابة صفحات إضافية " -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "نسخ الملفات القابلة للتحميل للنسخ..." -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "غير قادر على نسخ الملفات القابلة للتحميل %r : %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "غير قادر على نسخ الملف الثابت %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "نسخ ملفات إضافية" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "غير قادر على نسخ المف الإضافي %r" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "ملف الشعار %r غير موجود" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "ملف الايقونة %r غير موجود" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1097,7 +1097,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1150,66 +1150,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1228,135 +1228,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "متغير" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "نوع" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2210,24 +2210,24 @@ msgstr "متغير بيئة العمل" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2243,79 +2243,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "صفحة البحث" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2731,42 +2731,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "رابط دائم لهذه المعادلة" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2986,12 +3001,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3096,30 +3111,30 @@ msgstr "" msgid "References" msgstr "مراجع" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3438,18 +3453,18 @@ msgstr "" msgid "Contents" msgstr "المحتوى" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3513,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "فشل" @@ -3533,12 +3548,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo Binary files differindex 2339b4738..f4104698b 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index c7e8219b8..cb394e521 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" "MIME-Version: 1.0\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -886,8 +886,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2984,12 +2999,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3109,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,18 +3451,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3511,16 +3526,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo Binary files differindex e03e02a96..be77cd007 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index d2612dd2b..3497e7113 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" "MIME-Version: 1.0\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,8 +887,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -933,144 +933,144 @@ msgstr "সাধারণ ইনডেক্স" msgid "index" msgstr "ইনডেক্স" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "পরবর্তী" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "পূর্ববর্তী" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1899,44 +1899,44 @@ msgstr "রিটার্নস" msgid "Return type" msgstr "রিটার্ন টাইপ" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "ফাংশন" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "শব্দকোষ" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "ব্যকরণ টোকেন" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "প্রোগ্রাম অপশন" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "মডিউল ইনডেক্স" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "অনুসন্ধান পাতা" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2985,12 +3000,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3110,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,18 +3452,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3512,16 +3527,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo Binary files differindex ed993edcd..8db037bed 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index de5b4d729..ca531cc03 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" "MIME-Version: 1.0\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,8 +887,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -933,144 +933,144 @@ msgstr "Índex General" msgid "index" msgstr "índex" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "següent" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s documentació" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1899,44 +1899,44 @@ msgstr "Retorna" msgid "Return type" msgstr "Tipus de retorn" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membre" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funció" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipus" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "variable d'entorn; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "variable d'entorn" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Índex de Mòduls" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pàgina de Cerca" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2985,12 +3000,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3110,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,18 +3452,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3512,16 +3527,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo Binary files differindex 5eb8e2378..381c183a8 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index ce12949c0..5fb7ca2db 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" "MIME-Version: 1.0\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "xk'isïk" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Ruwachib'äl %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Kik'ajtz'ïk %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,8 +887,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -933,144 +933,144 @@ msgstr "Konojel cholwuj" msgid "index" msgstr "cholwuj" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "jun chïk" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "chi rij kan" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "Rusachoj nuk'unem:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "Rusachoj kamulunem:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1899,44 +1899,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "retal jalöj" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "wuj" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(chupam %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2985,12 +3000,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3110,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,18 +3452,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3512,16 +3527,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo Binary files differindex 551f4cf99..c89af3ae8 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 1a8525f1c..0705d6072 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" "MIME-Version: 1.0\n" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -934,144 +934,144 @@ msgstr "Obecný rejstřík" msgid "index" msgstr "rejstřík" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "další" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "předchozí" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "Dokumentace pro %s %s" @@ -2731,42 +2731,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3533,12 +3548,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo Binary files differindex d6a9c2edb..1d31be2ae 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index c88ba405f..9c0c2fb5f 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -194,27 +194,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -222,57 +222,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Ffig. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabl %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -495,17 +495,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -788,22 +788,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -888,8 +888,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -899,7 +899,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -920,7 +920,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -934,144 +934,144 @@ msgstr "Indecs cyffredinol" msgid "index" msgstr "indecs" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "nesaf" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "blaenorol" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "Dogfennaeth %s %s " @@ -1097,7 +1097,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1150,66 +1150,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1228,135 +1228,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "aelod" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "ffwythiant" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2210,24 +2210,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2243,79 +2243,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Indecs Modiwlau" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Tudalen Chwilio" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2731,42 +2731,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(yn %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2986,12 +3001,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3096,30 +3111,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3438,18 +3453,18 @@ msgstr "Cyfangu'r bar ochr" msgid "Contents" msgstr "Cynnwys" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3513,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3533,12 +3548,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo Binary files differindex 1dc761c55..d8f32c0b6 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index ee86a5fed..7a94c37d0 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "indlæser oversættelser [%s] ..." -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "færdig" @@ -196,27 +196,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Ingen sådan konfigurationsværdi: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Konfigurationsværdien %r er allerede til stede" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -224,57 +224,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "figur %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "tabel %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Kildekode %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r blev ikke fundet, ignorerer." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -497,17 +497,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -632,7 +632,7 @@ msgstr "forbereder dokumenter" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -642,7 +642,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ugyldig css_file: %r, ignoreret" @@ -790,22 +790,22 @@ msgstr "læser skabeloner ..." msgid "writing message catalogs... " msgstr "skriver beskedkataloger ..." -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -890,8 +890,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -901,7 +901,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -922,7 +922,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -936,144 +936,144 @@ msgstr "Generelt indeks" msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "næste" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "forrige" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "kan ikke kopiere statisk fil %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "udgyldig js_file: %r, ignoreret" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "favicon-filen %r findes ikke" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentation" @@ -1099,7 +1099,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1152,66 +1152,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "Kodningsfejl:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1230,135 +1230,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "kan ikke finde filer %r" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1902,44 +1902,44 @@ msgstr "Returnerer" msgid "Return type" msgstr "Returtype" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "optæl" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "optælling" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2062,7 +2062,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2212,24 +2212,24 @@ msgstr "rolle" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "miljøvariabel; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2245,79 +2245,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "begreb i ordliste" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "grammatisk element" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "referenceetiket" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "programtilvalg" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Modulindeks" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søgeside" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2733,42 +2733,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "Permalink til denne ligning" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(i %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2988,12 +3003,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3098,30 +3113,30 @@ msgstr "" msgid "References" msgstr "Referencer" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3440,18 +3455,18 @@ msgstr "Sammenfold sidebjælke" msgid "Contents" msgstr "Indhold" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3515,16 +3530,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3535,12 +3550,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo Binary files differindex bcfaec7fa..6eecfb991 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index dc846af0e..01968c0d1 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" "MIME-Version: 1.0\n" @@ -632,7 +632,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -642,7 +642,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -890,7 +890,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -936,144 +936,144 @@ msgstr "Stichwortverzeichnis" msgid "index" msgstr "Index" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "weiter" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "zurück" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s Dokumentation" @@ -2733,42 +2733,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3535,12 +3550,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo Binary files differindex b386770a4..04b931b7a 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index bfebbadfd..e08be2211 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" @@ -631,7 +631,7 @@ msgstr "προετοιμασία κειμένων" msgid "duplicated ToC entry found: %s" msgstr "βρέθηκε διπλότυπη εγγραφή ToC: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "αντιγραφή εικόνων..." @@ -641,7 +641,7 @@ msgstr "αντιγραφή εικόνων..." msgid "cannot read image file %r: copying it instead" msgstr "δεν είναι δυνατή η ανάγωνση αρχείου εικόνας %r: αντί αυτού θα αντιγραφεί" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "η τιμή παραμετροποίησης \"epub_identifier\" δεν msgid "conf value \"version\" should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"version\" δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ανέγκυρο css_file: %r, θα αγνοηθεί" @@ -889,7 +889,7 @@ msgstr "σφάλμα κατά την εγγραφή του αρχείου Makefi msgid "The text files are in %(outdir)s." msgstr "Τα αρχεία κειένου βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -935,144 +935,144 @@ msgstr "Κεντρικό Ευρετήριοο" msgid "index" msgstr "ευρετήριο" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "επόμενο" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "προηγούμενο" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "αντιγραφή αρχείων μεταφόρτωσης..." -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "δεν είναι δυνατή η αντιγραφή του μεταφορτωμένου αρχείου %r: %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "δεν είναι δυνατή η αντιγραφή στατικού αρχείου %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "δεν είναι δυνατή η αντιγραφή του επιπλέον αρχείου %r" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "Αδυναμία εγγραφής του αρχείου πληροφοριών μεταγλώττισης: %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "ο κατάλογος εύρεσης δεν ήταν δυνατό να φορτωθεί, αλλά δε θα μεταγλωττιστούν όλα τα έγγραφα: ο κατάλογος δε θα είναι πλήρης." -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "η σελιδα %s ταιριάζει δύο σχέδια στo html_sidebars: %r and %r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ένα σφάλμα Unicode παρουσιάστηκε κατά τη δημιουργία της σελίδας %s. Παρακαλείστε να επιβεβαιώσετε ότι όλες οι τιμές παραμετροποίησης οι οποίες περιλαμβάνουν μη-ASCII περιεχόμενο είναι στοιχειοσειρές Unicode." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ένα σφάλμα συνέβη κατά τη σύνθεση της σελίδας %s.\n\nΑιτία %r " -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "ανέγκυρο js_file: %r, θα αγνοηθεί" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Πολλά math_renderers έχουν καταγραφεί. Αλλά δεν έχει επιλεγεί κανένα math_renderer." -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Δόθηκε άγνωστο math_renderer %r." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "Η εγγραφή html_extra_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "η εγγραφή html_static_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "το αρχείο logo %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "το αρχείο favicon %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "Τεκμηρίωση του %s - %s" @@ -2732,42 +2732,57 @@ msgstr "σε σειρά latex %r: %s" msgid "Permalink to this equation" msgstr "Μόνιμος σύνδεσμος σε αυτή την εξίσωση" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "το απόθεμα intersphinx έχει μεταφερθεί: %s->%s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "φότωση του αποθέματος intersphinx από %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "παρουσιάστηκαν κάποια ζητήματα με μερικά απο τα αποθέματα, αλλά υπήρξαν λειτουργικές εναλλακτικές:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "αδυναμία προσέγγισης οποιασδήποτε αποθήκης με τα ακόλουθα ζητήματα:" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(στη %s έκδοση %s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(στο %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "το αναγνωριστικό intersphinx %r δεν είναι στοιχειοσειρά. Θα αγνοηθεί" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3534,12 +3549,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "άγνωστος τύπος κόμβου: %r" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo Binary files differindex 4550c5b4d..d3e7413a6 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index 9501ea3a3..dd8a278c3 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" "MIME-Version: 1.0\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -886,8 +886,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2984,12 +2999,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3109,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,18 +3451,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3511,16 +3526,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo Binary files differindex 6972d87dd..4713b05de 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index 22e4477f5..30c8fdec5 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo Binary files differindex 3ef9839ea..86df2967e 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index c4298885c..c5dc247d4 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" "MIME-Version: 1.0\n" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo Binary files differindex cc26d7679..3564db3a8 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index f139bee25..97847a56d 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -194,27 +194,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -222,57 +222,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -495,17 +495,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -788,22 +788,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -888,8 +888,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -899,7 +899,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -920,7 +920,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -934,144 +934,144 @@ msgstr "Indico universala" msgid "index" msgstr "indico" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "sekva" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "antaŭa" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentaro" @@ -1097,7 +1097,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1150,66 +1150,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1228,135 +1228,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcio" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "nomaĵo" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2210,24 +2210,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2243,79 +2243,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2731,42 +2731,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2986,12 +3001,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3096,30 +3111,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "Avertoj" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3438,18 +3453,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3513,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3533,12 +3548,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo Binary files differindex 3feb35ba4..37bb0fc5c 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index ceb48ea6d..058921209 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" "MIME-Version: 1.0\n" @@ -635,7 +635,7 @@ msgstr "preparando documentos" msgid "duplicated ToC entry found: %s" msgstr "entrada de tabla de contenido duplicada encontrada: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "copiando imágenes..." @@ -645,7 +645,7 @@ msgstr "copiando imágenes..." msgid "cannot read image file %r: copying it instead" msgstr "no puede leer el archivo de imagen %r: en su lugar, lo copia" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -770,7 +770,7 @@ msgstr "el valor de configuración \"epub_identifier\" no debe estar vacío para msgid "conf value \"version\" should not be empty for EPUB3" msgstr "el valor de configuración \"version\" no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" @@ -893,7 +893,7 @@ msgstr "error escribiendo archivo Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Los archivos de texto están en %(outdir)s." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -939,144 +939,144 @@ msgstr "Índice General" msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "siguiente" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "generando índices" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "escribiendo páginas adicionales" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "copiando archivos descargables..." -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "no se puede copiar archivo descargable %r: %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "no se puede copiar archivo estático %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "copiando archivos extras" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "no se puede copiar archivo extra %r" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "Error al escribir el archivo de información de compilación: %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "no se pudo cargar el índice de búsqueda, pero no se crearán todos los documentos: el índice estará incompleto." -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "La página %s coincide con dos patrones en html_sidebars: %r y %r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "Se produjo un error Unicode al representar la página %s. Asegúrese de que todos los valores de configuración que contengan contenido que no sea ASCII sean cadenas Unicode." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ha ocurrido un error al renderizar la pagina %s. Motivo: %r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "volcar inventario de objetos" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "volcar el índice de búsqueda en %s" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Muchos math_renderers están registrados. Pero no se ha seleccionado math_renderer." -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Desconocido math_renderer %r es dado." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "entrada html_extra_path %r no existe" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "entrada html_extra_path %r se coloca dentro de outdir" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "entrada html_static_path %r no existe" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "entrada html_static_path %r se coloca dentro de outdir" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "archivo de logo %r no existe" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "el archivo %r usado para el favicon no existe" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "documentación de %s - %s" @@ -2736,42 +2736,57 @@ 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:179 #, 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:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "cargando inventario intersphinx desde %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 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:230 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:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(en %s versión %s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(en %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, 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:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Error al leer intersphinx_mapping[%s], ignorado: %r" @@ -3538,12 +3553,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "tipo de nodo desconocido: %r" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo Binary files differindex f2a18c259..011912965 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index c7262cbab..d204ff31c 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -5,15 +5,15 @@ # Translators: # Aivar Annamaa <aivar.annamaa@gmail.com>, 2011 # Ivar Smolin <okul at linux ee>, 2012 -# Ivar Smolin <okul@linux.ee>, 2013-2021 +# Ivar Smolin <okul@linux.ee>, 2013-2022 # Luc Saffre <luc.saffre@gmail.com>, 2015 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" -"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 09:11+0000\n" +"Last-Translator: Ivar Smolin <okul@linux.ee>\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +69,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "tõlgete laadimine [%s]... " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "valmis" @@ -196,27 +196,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Puudub määratud seadistusväärtus: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Seadistuste väärtus %r on juba olemas" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, 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:334 +#: sphinx/config.py:345 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:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -224,57 +224,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Sektsioon %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Joonis %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Nimekiri %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r ei leitud, eiratakse." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -283,12 +283,12 @@ msgstr "" #: sphinx/events.py:67 #, python-format msgid "Event %r already present" -msgstr "" +msgstr "Sündmus %r on juba olemas" #: sphinx/events.py:73 #, python-format msgid "Unknown event name: %s" -msgstr "" +msgstr "Tundmatu sündmuse nimi: %s" #: sphinx/events.py:109 #, python-format @@ -497,17 +497,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "fail %r teemarajal pole korrektni zip-fail või ei sisalda see teemat" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "teemat nimega %r ei leitud (kas theme.conf on puudu?)" @@ -632,7 +632,7 @@ msgstr "dokumentide ettevalmistamine" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "kujutiste kopeerimine... " @@ -642,7 +642,7 @@ msgstr "kujutiste kopeerimine... " msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "vigane css_file: %r, eiratakse" @@ -790,22 +790,22 @@ msgstr "mallide lugemine... " msgid "writing message catalogs... " msgstr "sõnumikataloogide kirjutamine... " -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Otsi vigu ülalolevast väljundist või failist %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -890,8 +890,8 @@ msgstr "viga faili Makefile kirjutamisel: %s" msgid "The text files are in %(outdir)s." msgstr "Tekstifailid asuvad kataloogis %(outdir)s." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "viga faili %s kirjutamisel: %s" @@ -901,7 +901,7 @@ msgstr "viga faili %s kirjutamisel: %s" msgid "The XML files are in %(outdir)s." msgstr "XML-failid asuvad kataloogis %(outdir)s." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "PseudoXML-failid asuvad kataloogis %(outdir)s." @@ -922,7 +922,7 @@ msgid "Failed to read build info file: %r" msgstr "Viga ehitamise infofaili lugemisel: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -936,144 +936,144 @@ msgstr "Üldindeks" msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "järgmine" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "eelmine" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "indeksite genereerimine" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "täiendavate lehtede kirjutamine" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "allalaaditavate failide kopeerimine..." -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "staatilist faili %r pole võimalik kopeerida" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "lisafailide kopeerimine" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "lisafaili %r pole võimalik kopeerida" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "Viga ehitamise infofaili kirjutamisel: %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "lehe %s renderdamisel tekkis Unicode viga. Palun veendu, et kõik mitte-ASCII sisuga seadistusparameetrid on kirjeldatud Unicode stringidena." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "otsinguindeksi tõmmise kirjutamine keelele %s" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "vigane js_file: %r, eiratakse" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path kirjet %r pole olemas" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path kirje %r asub väljaspool väljundkataloogi" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "logofaili %r pole olemas" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "favicon faili %r pole olemas" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentatsioon" @@ -1099,7 +1099,7 @@ msgstr "seadistusparameetrit \"latex_documents\" ei leitud, dokumente ei kirjuta msgid "\"latex_documents\" config value references unknown document %s" msgstr "seadistusparameeter \"latex_documents\" viitab tundmatule dokumendile %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1152,66 +1152,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "Katkestatud!" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "Rekursiooni viga:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "Kui see oli kasutaja viga, siis anna palun sellest teada, et tulevikus oleks võimalik parem veateade väljastada." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "Vearaportit on võimalik esitada träkkeris aadressil <https://github.com/sphinx-doc/sphinx/issues>. Aitäh!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1230,135 +1230,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "dokumentatsiooni lähtefailide rada" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "väljundkataloogi rada" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "määratud failide uuestiehitamine. Võtme -a korral eiratakse" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "üldsuvandid" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "kasutatav ehitaja (vaikimisi: html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "kõikide failide kirjutamine (vaikimisi kirjutatakse ainult uued ja muutunud failid)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "salvestatud keskkonda ei kasutata, alati loetakse kõik failid" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "puhverdatud keskkonna ja dokumendipuu rada (vaikimisi: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "rööbiti ehitamine N protsessiga, kui võimalik (eriväärtus \"auto\" määrab N väärtuseks protsessorite arvu)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "seadistusfaili (conf.py) asukoha rada (vaikimisi sama mis SOURCEDIR)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "seadistusfaili ei kasutata üldse, ainult -D suvandid" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "seadistusfailis määratud väärtuse asendamine" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "väärtuse edastamine HTML-mallidesse" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "konsooliväljundi suvandid" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "hoiatuste (ja vigade) kirjutamine määratud faili" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "hoiatuste muutmine vigadeks" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "erindi korral täieliku tagasijälituse näitamine" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "erindi korral Pdb käivitamine" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "faile %r pole võimalik leida" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "suvandit -a ja failinimesid pole võimalik kombineerida" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "hoiatuste faili %r pole võimalik avada: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "-D suvandi argument peab olema vormingus nimi=väärtus" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "-A suvandi argument peab olema vormingus nimi=väärtus" @@ -1902,44 +1902,44 @@ msgstr "Tagastab" msgid "Return type" msgstr "Tagastustüüp" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "liige" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "muutuja" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funktsioon" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "loend" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tüüp" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "funktsiooni parameeter" @@ -2062,7 +2062,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "võrrandil %s on topeltsilt, teine instants on %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Vigane math_eqref_format: %r" @@ -2212,24 +2212,24 @@ msgstr "roll" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "keskkonnamuutuja; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "%s käsureasuvand" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "käsureasuvand" @@ -2245,79 +2245,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "sõnastiku termin" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "grammatika märk" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "viite silt" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "keskkonnamuutuja" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "programmi suvand" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Mooduli indeks" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Otsinguleht" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "vigane numfig_format: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "vigane numfig_format: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2733,42 +2733,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "Püsiviit sellele võrrandile" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(projektis %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2988,12 +3003,12 @@ msgstr "" msgid "failed to import object %s" msgstr "tõrge objekti %s importimisel" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3098,30 +3113,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3440,18 +3455,18 @@ msgstr "Varja külgriba" msgid "Contents" msgstr "Sisukord" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3515,16 +3530,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "Tundmatu pildivorming: %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3535,12 +3550,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo Binary files differindex d105bb501..4fbe69dc1 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index ddae749d5..e93e3a364 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -194,27 +194,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -222,57 +222,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -495,17 +495,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -788,22 +788,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -888,8 +888,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -899,7 +899,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -920,7 +920,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -934,144 +934,144 @@ msgstr "Indize orokorra" msgid "index" msgstr "indizea" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "hurrengoa" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "aurrekoa" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentazioa" @@ -1097,7 +1097,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1150,66 +1150,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1228,135 +1228,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "Itzultzen du" msgid "Return type" msgstr "Itzulketa mota" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "partaidea" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "aldagaia" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funtzioa" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makroa" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "mota" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2210,24 +2210,24 @@ msgstr "rola" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "inguruneko aldagaia; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2243,79 +2243,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "glosarioko terminoa" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "gramatikako token-a" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "erreferentzia etiketa" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "inguruneko aldagaia" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "programako aukera" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Moduluen indizea" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Bilaketa orria" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2731,42 +2731,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2986,12 +3001,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3096,30 +3111,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3438,18 +3453,18 @@ msgstr "Alboko barra tolestu" msgid "Contents" msgstr "Edukiak" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3513,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3533,12 +3548,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo Binary files differindex 0a0b385a8..177b5bfe4 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 6a37b077e..32f899bc5 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "'setup' آن طور که در conf.py تعریف شده شیئ قابل msgid "loading translations [%s]... " msgstr "بارگذاری ترجمه ها [%s]... " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "انجام شد" @@ -196,27 +196,27 @@ msgstr "امکان لغو تنظیمات پیکربندی %r با نوع پشت msgid "unknown config value %r in override, ignoring" msgstr "مقدار پیکربندی ناشناخته %r در ابطال، نادیده گرفته شد" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "چنین مقداری برای پیکربندی نبود: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "مقدار پیکربندی %r از قبل موجود است" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "خطای نحوی در پروندهی پیکربندی شما وجود دارد: %s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "پروندهی پیکربندی (یا یکی از ماژول هایی که وارد می کند) sys.exit() را فراخواند" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -224,57 +224,57 @@ msgid "" "%s" msgstr "یک خطای قابل برنامه ریزی در پروندهی پیکربندی شما وجود دارد:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, 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:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "بخش%s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "شکل %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "فهرست %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "مقدار پیکربندی '{name}' باید یکی از {candidates} باشد، اما '{current}' داده شده." -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، ولی انتظار میرفت {permitted} میبود." -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، حالت پیشفرض {permitted} است." -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "دامنهی اصلی %r یافت نشد، نادیده گرفته میشوند." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -497,17 +497,17 @@ msgstr "تنظیمات %s. %s در هیچ یک از پیکربندیهای ج msgid "unsupported theme option %r given" msgstr "گزینهی پشتیبانی نشدهی زمینه %r داده شده" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "پروندهی %r که مسیر زمینه به آن اشاره دارد یا پرونده زیپ معتبری نیست یا هیچ زمینهای درونش ندارد" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "زمینهی خواندن مستندات اسفینکس (< 0.3.0) پیدا شد. از نسخهی ۶/۰ اسفینکس این زمینه دیگر در دسترس نخواهد بود" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "هیچ زمینهای با نام %r پیدا نشد(آیا پرونده theme.conf گم شده؟)" @@ -632,7 +632,7 @@ msgstr "آماده سازی اسناد" msgid "duplicated ToC entry found: %s" msgstr "عنوان تکراری در فهرست مطالب پیدا شد:%s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "در حال رونوشت از تصاویر... " @@ -642,7 +642,7 @@ msgstr "در حال رونوشت از تصاویر... " msgid "cannot read image file %r: copying it instead" msgstr "امکان خواندن پروندهی تصویری %r نبود: در عوض کپی میشود" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "مقدار پیکربندی شناسه (\"epub_identifier\") نباید msgid "conf value \"version\" should not be empty for EPUB3" msgstr "مقدار پیکربندی ویراست (\"version\") نباید برای نسخهی سوم پروندههای انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "پروندهی css نامعتبر%r: نادیده گرفته میشود" @@ -790,22 +790,22 @@ msgstr "خواندن قالبها... " msgid "writing message catalogs... " msgstr "نوشتن سیاهههای پیام... " -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "به دنبال هر یک از خطاهای بالا در یا در برونداد و یا در %(outdir)s/output.txt بگردید" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "پیوند خراب: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "مهار '%s' پیدا نشد" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "شکست در گردآوری عبارات باقاعده در linkcheck_allowed_redirects: %r %s" @@ -890,8 +890,8 @@ msgstr "خطای نوشتن پروندهی ساخت (Makefile) : %s" msgid "The text files are in %(outdir)s." msgstr "پروندهی متنی در پوشهی %(outdir)s است." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "خطای نوشتن پرونده: %s, %s" @@ -901,7 +901,7 @@ msgstr "خطای نوشتن پرونده: %s, %s" msgid "The XML files are in %(outdir)s." msgstr "پروندهی XML در پوشهی %(outdir)s است." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "پروندههای شبه XML در پوشهی %(outdir)s." @@ -922,7 +922,7 @@ msgid "Failed to read build info file: %r" msgstr "شکست در خواندن پروندهی اطّلاعات ساخت: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -936,144 +936,144 @@ msgstr "فهرست کلی" msgid "index" msgstr "فهرست" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "بعدی" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "قبلی" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "تولید نمایهها" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "نوشتن صفحات اضافی" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "رونوشت از پروندههای قابل دریافت... " -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "نمی تواند از پروندهی قابل دریافت %r: %s رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "شکست در رونوشت یک پروندهی به html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "رونوشت از پروندههای ثابت" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "نمی تواند از پروندهی ثابت %r رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "رونوشت برداری از پروندههای اضافی" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "نمی تواند از پروندهی اضافهی %r رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "شکست در نوشتن پروندهی اطّلاعات ساخت: %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "نمایهی جستجو نمیتواند بارگزاری شود، ولی برای همهی مستندات ساخته نمیشود: نمایه ناقص خواهد بود." -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "صفحهی %s با دو الگو در نوار کناری صفحه (html_sidebars) همخوانی دارد: %r و%r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "هنگام ارائهی صفحهی %s خطای یونیکد رخ داد. لطفاً اطمینان حاصل کنید که تمام مقدارهای پیکربندیها دارای محتوای غیر اَسکی، رشتهمتنهای یونکد هستند." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "خطایی در نمایش صفحهی %s رخ داد.\nعلّت: %r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "خالی کردن فهرست اشیاء" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "خالی کردن نمایهی جستجو در %s" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "پروندهی js نامعتبر%r: نادیده گرفته میشود" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "ارائه کنندههای ریاضی زیادی ثبت شدهاند، ولی هیچ کدام انتخاب نشده." -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "نمایشدهندهی ریاضی نامشخّص %r داده شده." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "مدخل مسیر اضافی (html_extra_path) %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "مدخل مسیر اضافی (html_extra_path) %r درون شاخهی خارجی قرار دارد" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "مدخل مسیر ثابت (html_static_path) %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "مدخل مسیر ثابت (html_static_path) %r درون شاخهی خارجی قرار دارد" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "پروندهی آرم %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "پروندهی آیکون مورد علاقه %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "از نسخهی ۳.۵.۰ به بعد افزودن پیوند همیشگی (html_add_permalinks) منسوخ شده. لطفاً از به جایش html_permalinks و html_permalinks_icon را به کار ببرید." -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "مستندات %s%s" @@ -1099,7 +1099,7 @@ msgstr "هیچ مقدار پیکربندی اسناد لتکسی (latex_document msgid "\"latex_documents\" config value references unknown document %s" msgstr "مقدار پیکربندی سندهای لتکس (latex_documents) به سند ناشناختهی %s ارجاع میدهد" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1152,66 +1152,66 @@ msgstr "%r فاقد تنظیمات زمینه است" msgid "%r doesn't have \"%s\" setting" msgstr "%r فاقد تنظیمات \"%s\" است" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "در حین ساخت ایرادی رخ داد، شروع اشکال زدا:" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "قطع شد!" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "خطای نشانهگذاری متن بازساختمند (reST)" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "خطای کدگذاری نویسه:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "اگر میخواهید مشکل را به توسعهدهندگان گزارش دهید، ردیابی کامل خطا در %s ذخیره شده است." -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "خطای بازگشتی:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "این اتّفاق ممکن است برای پروندههای بسیار تو در توی منبع بیافتد. شما میتوانید محدودیّت ۱۰۰۰ تایی مقدار پیشفرض اجرای بازگشت پایتون را در conf.py زیاد کنید، مثلاً با:" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "ایراد رخ داد:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "لطفاً اگر این مورد خطای کاربر بوده، آن را گزارش دهید تا برای بارهای بعدی پیام خطای بهتری بتواند ارائه شود." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "گزارش اشکال می تواند در ردیاب در مسیر <https://github.com/sphinx-doc/sphinx/issues> ثبت شود. با سپاس!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "شمارهی کار باید یک عدد مثبت باشد" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "برای اطّلاعات بیشتر به <https://www.sphinx-doc.org/> بروید." -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1230,135 +1230,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "\nایجاد مستندات از پروندههای مبدأ.\n\nسازندهی اسفنکس مستندات را از روی پرونده های مبنع در پوشهی منبع تولید کرده در پوشهی برونداد قرار میدهد.\nاین سازنده در پوشهی مبدأ به دنبال پرونده 'conf.py' تنظیمات پیکربندی میگردد.\nاین امکان وجود دارد که از ابزار شروع سریع اسفینکس ('sphinx-quickstart') برای تولید پروندههای قالب، که شامل پرونده 'conf.py' هم میشود استفاده شود.\n\nسازندهی اسفینکس می توند مستندات را در قالبهای گوناگونی از پروندههای خروجی ایجاد کند. قالب پرونده خروجی با مشخّص کردن نام سازنده در خط فرمان مشخّص میشود که به صورت پیش فرض HTML است. همچنین، سازندهها میتوانند کارهای دیگر مربوط به فرآیند پردازش مستندسازی را انجام دهند.\n\nبه صورت پیش فرض، هر چیزی که منسوخ شده باشد تولید میشود. برونداد برای پروندههای منتخب میتواند فقط با مشخّص کردن نام تک تک پروندهها ساخته شود.\n" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "مسیر پروندههای مستندات" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "مسیری برای شاخهی برون داد" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "لیست پروندههایی که قرار است دوباره ساخته شوند. اگر با -a مشخّص شده باشند نادیده گرفته میشوند" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "گزینههای کلی" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "قالب سازنده مورد استفاده (پیشفرض:html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "نوشتن همهی پروندهها (پیشگزیده: فقط پروندههای جدید نو تغییر یافته را بنویس)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "از محیط ذخیره شده استفاده نکن، همیشه همه پرونده ها را بخوان" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "مسیر برای محیط ذخیره شده و پروندههای doctree (پیش فرض: OUTPUTDIR /.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "درصورت امکان ساخت به صورت موازی با N فرآیند پردازشی (مقدار ویژهی «خودکار» شمار N را به تعداد پردازنده تنظیم میکند)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "مسیر جایی که پروندهی پیکربندی (conf.py) قرار دارد ( پیشگزیده: مثل پوشهی منبع)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "هیچ پروندهی پیکربندیای استفاده نکن، فقط گزینهی -D" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "نادیده گرفتن تنظیماتی در پروندهی پیکرهبندی" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "مقداری را به قالبهای HTML بدهید" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "تعریف برچسب: «فقط» تکّههای با برچسب گنجانده شود" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "حالت ریزبینانه، هشدار دربارهی همهی ارجاعهای ناپیدا" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "گزنیههای برونداد میز فرمان" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "افزایش ارائهی جزئیّات (می تواند تکرار شود)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "بدون برونداد در درگاه خروجی استاندارد(stdout)، فقط هشدارها در درگاه استاندارد خطاها (stderr)" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "بدون هیچ برونداد، حتّی بدون هشدار" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "خروجی رنگ شده منتشر شود (پیشفرض: تشخیص خودکار)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "خروجی رنگ شده منتشر نشود (پیشفرض: تشخیص خودکار)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "نوشتن هشدارها (و خطاها) در پروندهی داده شده" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "تغییر هشدارها به خطاها" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "با سوییچ -W، در هنگام گرفتن هشدار ادامه بده" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "نمایش گزارش کامل ردیابی ایراد" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "ایراد در اجرای Pdb" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "پروندههای %r پیدا نشدند" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "نمی توان گزینهی -a را با نام پروندهها ترکیب کرد" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "امکان باز کردن پرونده هشدار نبود %r: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "نشانوند گزینهی D- میبایست در قالب نام=مقدار (name=value) باشد" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "نشانوند گزینهی A- میبایست در قالب نام=مقدار (name=value) باشد" @@ -1902,44 +1902,44 @@ msgstr "بازگشت ها" msgid "Return type" msgstr "نوع برگشتی" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "عضو" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "متغیّر" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "تابع" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "ماکرو" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "ساختار" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "اجتماع" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "شمارش" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "شمارنده" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "گونه" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "مؤلّفهی تابع" @@ -2062,7 +2062,7 @@ msgstr "توضیح %s تکراری از %s، مورد دیگر%s در %s قرا msgid "duplicate label of equation %s, other instance in %s" msgstr "بر چسب معادله ی %s تکرار است، مورد دیگر در %s قرار دارد" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "قالب مرجع معادلهی ریاضی (math_eqref_format) نامعتبر: %r" @@ -2212,24 +2212,24 @@ msgstr "نقش" msgid "duplicate description of %s %s, other instance in %s" msgstr "توضیح تکراری از %s %s، مورد دیگر در %s قرار دارد" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "متغیرهای عمومی؛ %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "توضیح بدشکل برای گزینهی %r، باید شبیه اینها باشد \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" یا \"+opt args\"" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "%s گزینهی خط فرمان" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "گزینه خط فرمان" @@ -2245,79 +2245,79 @@ msgstr "اصطلاحات واژهنامه نباید با خطوط خالی msgid "glossary seems to be misformatted, check indentation" msgstr "به نظر می رسد واژهنامه اشتباه شکل داده شده است، فاصلهگذاری از ابتدای سطر را بررسی کنید" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "اصطلاح واژهنامه" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "نشانه ی گرامری" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "برچسب ارجاع" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "متغیّر عمومی" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "اختیارات برنامه" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "سند" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "فهرست ماژول ها" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "صفحه جستجو" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "بر چسب تکراری %s، مورد دیگر در %s قرار دارد" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "تکرار توضیح %s از %s، مورد دیگر در%s قرار دارد" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "شمارهی شکل غیر فعّال است. گزینهی :numref: نادیده گرفته میشود." -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "شکست در ایجاد ارجاع متقابل. هیچ شماره انتساب داده نشده: %s" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "پیوند هیچ برچسبی ندارد: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "قالب شمارهی شکل نامعتبر: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "قالب شمارهی شکل نامعتبر: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "برچشب تعریف نشده: %s" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "شکست در ایجاد ارجاع متقابل. عنوان یا زیرنویس پیدا نشد: %s" @@ -2733,42 +2733,57 @@ msgstr "لتکس بین سطری: %r: %s" msgid "Permalink to this equation" msgstr "پیوند ثابت به این معادله" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "سیاههی بین اسفینکس جا به جایی را انجام داد: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "بارگذاری سیاههی بین اسفینکس از %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "مشکلاتی در برخی از سیاههها به وجود آمد،ولی این مشکلات راههای جایگزین های داشتهاند:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "شکست در رسیدن به یکی از سیاههها به خاطر مشکلات زیر:" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(در %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(در %s )" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "شناساگر بین اسفینکس %r رشتهمتن نیست. نادیده گرفته شد" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "شکست در خواندن intersphinx_mapping[%s]، نادیده گرفته میشود: %r" @@ -2988,12 +3003,12 @@ msgstr "شکست در تجزیه تحلیل نام %s" msgid "failed to import object %s" msgstr "شکست در وارد کردن شیئ %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "تولید خلاصه خودکار: پرونده پیدا نشد: %s" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3098,30 +3113,30 @@ msgstr "دریافتها" msgid "References" msgstr "منابع" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "هشدارها" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "فرآورده" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "مقدار نامعتبر تعیین شده (بدون کمانک انتهایی): %s" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "مقدار نامعتبر تعیین شده (بدون کمانک ابتدایی): %s" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "رشتهمتن ادبی ناقص (بدون علامت نقلقول انتهایی): %s" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "رشتهمتن ادبی ناقص (بدون علامت نقلقول ابتدایی): %s" @@ -3440,18 +3455,18 @@ msgstr "تا کردن نوار کناره" msgid "Contents" msgstr "محتوا ها" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "نمایهای بر پایهی ۴ ستون پیدا شد. شاید یک اشکال برنامهنویسی از افزونههایی که استفاده میکنید باشد: %r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "پانویس [%s] ارجاع داده نشده است." -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "پانویس [#] ارجاع داده نشده است." @@ -3515,16 +3530,16 @@ msgstr "امکان دریافت تصویر از منبع راه دور نبود: msgid "Unknown image format: %s..." msgstr "قالب تصویر ناشناخته: %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "نویسهی منبع غیرقابل رمزگشایی، جایگزین با «؟» : %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "رد شدن و نادیده انگاشتن" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "شکست خورد" @@ -3535,12 +3550,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "نام نقش یا دستورالعمل ناشناخته: %s:%s" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "بست از نوع ناشناخته: %r" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo Binary files differindex 7c46f4388..c831bc9cb 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 378c03815..08ee91c23 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" "MIME-Version: 1.0\n" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -933,144 +933,144 @@ msgstr "Yleinen sisällysluettelo" msgid "index" msgstr "hakemisto" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr ">" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "<" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo Binary files differindex 5364492f2..e2aacbb7e 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 0de72803b..30cc77ce9 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -34,8 +34,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" "MIME-Version: 1.0\n" @@ -655,7 +655,7 @@ msgstr "Document en préparation" msgid "duplicated ToC entry found: %s" msgstr "Entrées dupliquées de la table des matières trouvées : %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "Copie des images... " @@ -665,7 +665,7 @@ msgstr "Copie des images... " msgid "cannot read image file %r: copying it instead" msgstr "impossible de lire le fichier image %r: il sera copié à la place" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -790,7 +790,7 @@ msgstr "le paramètre de configuration \"epub_identifier\" ne peut pas être vid msgid "conf value \"version\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"version\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "fichier CSS invalide : %r, le fichier sera ignoré" @@ -913,7 +913,7 @@ msgstr "erreur lors l'écriture du fichier Makefile : %s" msgid "The text files are in %(outdir)s." msgstr "Les fichiers texte se trouvent dans %(outdir)s." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -959,144 +959,144 @@ msgstr "Index général" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "suivant" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "précédent" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "Génération des index" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "écriture des pages additionnelles" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "Copie des fichiers téléchargeables... " -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "impossible de copier le fichier téléchargeable %r: %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Échec de la copie du fichier dans html_static_file : %s : %r" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "copie des fichiers statiques" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "impossible de copier le fichier static %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "Copie des fichiers complémentaires" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "copie des fichiers supplémentaires impossible %r" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "Échec d'écriture du fichier de configuration de construction : %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "L'index de recherche n'a pas pu être chargé, mais tous les documents ne seront pas construits: l'index sera incomplet." -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "la page %s correspond à deux modèles dans html_sidebars: %r et %r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "une erreur Unicode est survenue lors du rendu de la page %s. Veuillez vous assurer que toutes les valeurs de configuration comportant des caractères non-ASCII sont des chaînes Unicode." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Un erreur est survenue lors de la génération de la page: %s.\nLa raison est: %r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "Export de l'inventaire des objets" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "Export de l'index de recherche dans %s" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "le fichier js_file : %r est invalide, il sera ignoré" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Plusieurs math_renderers sont enregistrés. Mais aucun n'est sélectionné." -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer saisi %r inconnu." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "l'entrée html_extra_path %r n'existe pas" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "l'entrée html_extra_path %r se trouve à l'intérieur de outdir" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "l'entrée html_static_path %r n'existe pas" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "l'entrée html_static_path %r se trouve à l'intérieur de outdir" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "le fichier de logo %r n'existe pas" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "le fichier de favicon %r n'existe pas " -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "Documentation %s %s" @@ -2756,42 +2756,57 @@ 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:179 #, 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:210 #, 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:224 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:230 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:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(disponible dans %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(dans %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, 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:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Échec de la lecture de intersphinx_mapping[%s]; ignoré : %r" @@ -3558,12 +3573,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "nom de rôle ou de directive inconnu: %s:%s" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "type de node inconnu : %r" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo Binary files differindex 42e8036d6..438430e8c 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index af0e21c13..0c89e67f8 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" "MIME-Version: 1.0\n" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo Binary files differindex 045d7a841..eba112167 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index b07a38d0b..da34da4eb 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" "MIME-Version: 1.0\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,8 +887,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -933,144 +933,144 @@ msgstr "" msgid "index" msgstr "אינדקס" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "הבא" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "הקודם" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "תיעוד %s %s" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1899,44 +1899,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "משתנה" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "פונקציה" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "מאקרו" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "משתנה סביבה; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "משתנה סביבה" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "מודול אינדקס" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "דף חיפוש" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2985,12 +3000,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3110,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,18 +3452,18 @@ msgstr "כווץ סרגל צד" msgid "Contents" msgstr "תוכן" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3512,16 +3527,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo Binary files differindex 974b53341..5f26ce1a4 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 4db905336..23df4db95 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" "MIME-Version: 1.0\n" @@ -632,7 +632,7 @@ msgstr "लेखपत्र बनाए जा रहे हैं" msgid "duplicated ToC entry found: %s" msgstr "विषय-सूची प्रविष्टि की प्रतिलिपि पायी गई: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "चित्रों की प्रतिलिपि बनाई जा रही है..." @@ -642,7 +642,7 @@ msgstr "चित्रों की प्रतिलिपि बनाई msgid "cannot read image file %r: copying it instead" msgstr "चित्रलेख फाइल %r नहीं पढ़ा जा सका: इसकी प्रतिलिपि बनाई जा रही है" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "ई-पब3 के लिए विन्यास मान \"epub_iden msgid "conf value \"version\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"version\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "अमान्य css_file: %r, उपेक्षित" @@ -890,7 +890,7 @@ msgstr "मेकफाइल लिखने में त्रुटि: %s" msgid "The text files are in %(outdir)s." msgstr "पाठ फाइल %(outdir)s में हैं." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -936,144 +936,144 @@ msgstr "सामान्य अनुक्रमाणिका" msgid "index" msgstr "अनुक्रमणिका" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "आगामी" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "पूर्ववर्ती" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "अनुक्रमाणिका निर्मित की जा रही है" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "अतिरिक्त पृष्ठ लिखे जा रहे हैं" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "उतारी गई फाइलों की प्रतिलिपि बनाई जा रही है..." -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "उतारी गई फाइलों %r की प्रतिलिपि नहीं की जा सकी: %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "स्थैतिक फाइल %r की प्रतिलिपि नहीं की जा सकी" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "अतिरिक्त फाइलों की प्रतिलिपियां बनाये जा रहे है| " -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "अतिरिक्त फाइल %r की प्रतिलिपि नहीं की जा सकी" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "निर्माण फाइल को नहीं लिखा जा सका: %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "खोज अनुक्रमाणिका नहीं चढाई जा सकी, लेकिन सभी लेखपत्र नहीं बनाए जाएंगे: अनुक्रमणिका अपूर्ण रहेगी." -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "पृष्ठ %s html_sidebars में दो आकृतियों से मिलता है: %r %r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "पृष्ठ %s की प्रस्तुति करते समय यूनिकोड त्रुटि हुई. कृपया यह सुनिश्चित कर लें कि सभी नॉन-असकी #non-ASCII# विहित विन्यास मान यूनिकोड अक्षरों में हैं." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "पृष्ठ %s की प्रस्तुति करते समय एक त्रुटि हुई.\nकारण: %r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "विषयवस्तुओं का भंडार बनाया जा रहा है" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "%s में खोज अनुक्रमाणिका भंडार बनाया जा रहा है" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "अमान्य js_file: %r, उपेक्षित" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "कई math_renderers पंजीकृत हैं. लेकिन कोई math_renderers नहीं चुना गया है." -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "अज्ञात math_renderer %r दिया गया." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path प्रविष्टि %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path का प्रविष्टि %r outdir में है| " -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path प्रविष्टि %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path का प्रविष्टि %r outdir में है| " -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "प्रतीकचिन्ह फाइल %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "इष्ट चिन्ह फाइल %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s दिग्दर्शिका" @@ -2733,42 +2733,57 @@ msgstr "पंक्तिबद्ध लाटेक्स %r: %s" msgid "Permalink to this equation" msgstr "इस समीकरण की स्थायी कड़ी" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "इन्टरस्फिंक्स सामान स्थानांतरित हो चुका है: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "इन्टरस्फिंक्स सामान को %s से चढ़ाया जा रहा है ..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "कुछ चीजों के साथ कुछ समस्या है, लेकिन काम के दूसरे विकल्प उपलब्ध हैं: " -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "कुछ चीजों पहुँचने में असफलता मिली और यह समस्याएँ मिलीं: " -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s में)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(%s में)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "इन्टरस्फिंक्स निर्धारक %r अक्षरमाला नहीं है. उपेक्षित" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3535,12 +3550,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "अज्ञात बिंदु प्रकार: %r" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo Binary files differindex 75f707229..e354efb8f 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 535503f55..c078f0026 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo Binary files differindex 81c4bb227..af84b23ad 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 85e0b5407..daa6b1f61 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" "MIME-Version: 1.0\n" @@ -66,7 +66,7 @@ msgstr "'setup' koji je postavljen u conf.py nije moguće pozvati. Molimo izmije msgid "loading translations [%s]... " msgstr "učitavanje prijevoda [%s]... " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "napravljeno" @@ -193,27 +193,27 @@ msgstr "ne može se nadjačati konf. vrijednost %r zbog nepodržanog tipa, zanem msgid "unknown config value %r in override, ignoring" msgstr "nepoznata konfiguracijska vrijednost %r, zanemaruje se" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Ne postoji konfiguracijska vrijednost: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Konfiguracijska vrijednost %r već postoji" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, 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:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Poglavlje %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Slika %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tablica %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Ispis %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nije pronađen, zanemareno je." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "postavka %s.%s ne pojavljuje se u pretraženim konfiguracijama tema" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "datoteka %r iz teme nije ispravna (zip) arhiva ili ne sadrži temu" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "nema teme %r (nedostaje theme.conf?)" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,8 +887,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -933,144 +933,144 @@ msgstr "Opceniti abecedni indeks" msgid "index" msgstr "abecedni indeks" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "naprijed" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "nazad" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentacija" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1899,44 +1899,44 @@ msgstr "Vraća" msgid "Return type" msgstr "Vraća tip" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "član" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "varijabla" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "dvostruka oznaka jednakosti %s, drugo pojavljivanje u %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "uloga" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "varijabla okruženja; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "termin rječnika" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "token gramatike" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "referentna oznaka" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "varijabla okruženja" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "programske mogućnosti" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Popis modula" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Tražilica" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "Link na tu definiciju" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(u %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2985,12 +3000,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3110,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,18 +3452,18 @@ msgstr "Sakrij pomoćnu traku" msgid "Contents" msgstr "Sadržaj" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3512,16 +3527,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo Binary files differindex 5335f9158..e0dcbb2df 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index c6833483b..aea73dc51 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" "MIME-Version: 1.0\n" @@ -634,7 +634,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -644,7 +644,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -769,7 +769,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -892,7 +892,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -938,144 +938,144 @@ msgstr "Általános tárgymutató" msgid "index" msgstr "nyitóoldal" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "következő" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "előző" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentáció" @@ -2735,42 +2735,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "Állandó hivatkozás erre az egyenletre" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3537,12 +3552,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo Binary files differindex 3b26a6954..a40ead7ec 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 0d2266755..839c03e26 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" "MIME-Version: 1.0\n" @@ -633,7 +633,7 @@ msgstr "menyiapkan dokumen" msgid "duplicated ToC entry found: %s" msgstr "entri ToC ganda ditemukan: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "menyalin gambar... " @@ -643,7 +643,7 @@ msgstr "menyalin gambar... " msgid "cannot read image file %r: copying it instead" msgstr "tidak dapat membaca berkas gambar %r: menyalin gambar sebagai gantinya" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -768,7 +768,7 @@ msgstr "nilai conf \"epub_identifier\" tidak seharusnya kosong untuk EPUB3" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "bilai conf \"version\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file yang salah: %r, mengabaikan" @@ -891,7 +891,7 @@ msgstr "kesalahan menulis berkas Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Berkas teks berada di %(outdir)s." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -937,144 +937,144 @@ msgstr "Indeks Umum" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "berikut" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "sebelum" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "menghasilkan indeks" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "menulis halaman tambahan" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "menyalin berkas yang dapat diunduh... " -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "tidak dapat menyalin berkas yang dapat diunduh %r: %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "tidak dapat menyalin berkas statik %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "menyalin berkas tambahan" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "tidak dapat menyalin berkas ekstra %r" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "Gagal menulis berkas info build: %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "indeks pencarian tidak dapat dimuat, tapi tidak semua dokumen akan dibangun: indeks akan jadi tidak lengkap." -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "halaman %s sebanding dengan dua pola dalam html_sidebars: %r dan %r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "kesalahan Unicode terjadi saat render halaman %s. Silakan pastikan semua nilai konfigurasi yang berisi konten non-ASCII adalah string Unicode." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Kesalahan terjadi saat render halaman %s.\nAlasan: %r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "menyisihkan persediaan obyek" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file yang salah: %r, mengabaikan" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Banyak math_renderers teregistrasi. Namun tidak satu pun math_renderer yang dipilih." -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer %r yang tidak diketahui diberikan." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "entri html_extra_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "entri html_static_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "berkas logo %r tidak ada" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "berkas favicon %r tidak ada" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "Dokumentasi %s %s" @@ -2734,42 +2734,57 @@ msgstr "inline latex %r: %s" msgid "Permalink to this equation" msgstr "Tautan untuk persamaan ini" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, 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:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "memuat penyimpanan intersphinx dari %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 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:230 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:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(di %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(dalam %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "pengenal intersphinx %r bukan string. Diabaikan" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3536,12 +3551,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "tipe simpul tidak dikenal: %r" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo Binary files differindex f37c4d5d7..ade6d9364 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index df02c1d7c..3386ec91c 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" "MIME-Version: 1.0\n" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -933,144 +933,144 @@ msgstr "Almennt yfirlit" msgid "index" msgstr "yfirlit" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "næsta" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "fyrri" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "Varanlegur hlekkur á þessa jöfnu" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo Binary files differindex 2321bf538..89eb2bdfd 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index e21e29c15..b0d66c54d 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" "MIME-Version: 1.0\n" @@ -633,7 +633,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -643,7 +643,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -768,7 +768,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -891,7 +891,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -937,144 +937,144 @@ msgstr "Indice generale" msgid "index" msgstr "indice" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "successivo" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "precedente" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s documentazione" @@ -2734,42 +2734,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "Permalink a questa equazione" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3536,12 +3551,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo Binary files differindex 53f5e9d2a..691dac533 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 2fca66899..011406099 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "MIME-Version: 1.0\n" @@ -645,7 +645,7 @@ msgstr "ドキュメントの出力準備中" msgid "duplicated ToC entry found: %s" msgstr "Tocエントリーが重複しています: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "画像をコピー中... " @@ -655,7 +655,7 @@ msgstr "画像をコピー中... " msgid "cannot read image file %r: copying it instead" msgstr "画像ファイル %r をPILで読み込めないため、そのままコピーします" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -780,7 +780,7 @@ msgstr "EPUB3出力では設定値 \"epub_identifier\" の指定が必要です" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"version\" が必要です" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "無効な css_file %r は無視されました" @@ -903,7 +903,7 @@ msgstr "Makefile の書き込みエラー: %s" msgid "The text files are in %(outdir)s." msgstr "テキストファイルは%(outdir)sにあります。" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -949,144 +949,144 @@ msgstr "総合索引" msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "次へ" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "前へ" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "索引を生成中" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "追加のページを出力中" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "ダウンロードファイルをコピー中..." -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "ダウンロードファイル %r をコピーできません: %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "html_static_file 内のファイルのコピーに失敗しました: %s: %r" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "静的ファイルをコピー中" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "静的ファイル %r をコピーできません" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "extraファイルをコピー中" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "extraファイル %r をコピーできませんでした" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "build info ファイル %r の出力に失敗しました" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "検索インデックスを読み込めず、ドキュメントビルドの一部が不完全です。" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "ページ %s がhtml_sidebarsの複数のパターンに一致しました: %r と %r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ページ%sの読み込み中にUnicodeエラーが発生しました。非アスキー文字を含む設定値は全てUnicode文字列にしてください。" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%sページのレンダリング中にエラーが発生しました。\n理由: %r " -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "オブジェクト インベントリを出力" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "%s の検索インデックスを出力" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "無効な js_file %r は無視されました" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "複数の math_renderer が登録されています。しかし math_renderer は選択されていません。" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "不明な math_renderer %r が指定されました。" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path %r が見つかりません" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path %r がoutdir内に配置されます" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path %r が見つかりません" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path %r がoutdir内に配置されます" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "ロゴファイル %r がありません" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "favicon ファイル %r がありません" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinksはv3.5.0以降、非推奨となりました。代わりにhtml_permalinksとhtml_permalinks_iconを使用してください。" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s ドキュメント" @@ -2746,42 +2746,57 @@ msgstr "latex のインライン表示 %r: %s" msgid "Permalink to this equation" msgstr "この数式へのパーマリンク" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx インベントリは移動しました: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s から intersphinx インベントリをロード中..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "いくつかのインベントリでいくつかの問題に遭遇しましたが、代替手段を持っていました:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "以下の問題があるため、いくつかのインベントリは到達できませんでした:" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx 識別子 %r は文字列ではありません。無視します" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "intersphinx_mapping [%s] の読み取りに失敗しました。無視します: %r" @@ -3548,12 +3563,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "不明なディレクティブまたはロール名: %s:%s" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "不明なノードタイプ: %r" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo Binary files differindex 106896b1b..56405dfb6 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index d6dc79189..73ca3382e 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-05 10:17+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-24 08:02+0000\n" "Last-Translator: YT H <dev@theYT.net>\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "현재 conf.py 파일에 정의된 'setup'은 호출 가능한 Python msgid "loading translations [%s]... " msgstr "번역을 불러오는 중 [%s]… " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "완료" @@ -194,27 +194,27 @@ msgstr "지원되지 않는 유형의 구성 설정 %r을(를) 재정의 할 수 msgid "unknown config value %r in override, ignoring" msgstr "재정의 중 알 수 없는 설정값 %r, 무시합니다" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "해당 설정값이 없습니다: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "설정값 %r이(가) 이미 존재합니다" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "구성 파일에 구문 오류가 있습니다: %s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "구성 파일(또는 가져온 모듈 중 하나)에서 sys.exit()을 호출했습니다" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -222,57 +222,57 @@ msgid "" "%s" msgstr "구성 파일에 프로그램 오류가 있습니다:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, 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:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "제 %s 절" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "그림 %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "표 %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "예시 %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "설정값 `{name}`은(는) {candidates} 중 하나여야 하지만, `{current}`이(가) 지정되었습니다." -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, {permitted} 유형을 기대했습니다." -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, 기본값은 `{default.__name__}'입니다." -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r(이)가 없으므로, 무시합니다." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -495,17 +495,17 @@ msgstr "검색된 테마 구성에서 %s.%s 설정이 존재하지 않습니다" msgid "unsupported theme option %r given" msgstr "지원하지 않는 테마 옵션 %r을(를) 설정했습니다" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "테마 경로의 %r 파일이 유효한 ZIP 파일이 아니거나 테마를 포함하지 않습니다" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "sphinx_rtd_theme (< 0.3.0) 가 발견되었습니다. 이 테마는 Sphinx 6.0부터 사용할 수 없습니다." -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "이름이 %r인 테마를 찾을 수 없습니다 (theme.conf 파일 누락?)" @@ -630,7 +630,7 @@ msgstr "문서 준비 중" msgid "duplicated ToC entry found: %s" msgstr "중복된 목차 항목 발견: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "이미지를 복사하는 중… " @@ -640,7 +640,7 @@ msgstr "이미지를 복사하는 중… " msgid "cannot read image file %r: copying it instead" msgstr "이미지 파일 %r을(를) 읽을 수 없으며, 대신 복사합니다" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "설정값 \"epub_identifier\"는 EPUB3의 경우 비워 둘 수 없습 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "설정값 \"version\"은 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "잘못된 css_file: %r, 무시합니다" @@ -788,22 +788,22 @@ msgstr "템플릿을 읽는 중… " msgid "writing message catalogs... " msgstr "메시지 카탈로그 작성 중… " -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "위의 출력 또는 %(outdir)s/output.txt 파일에서 오류를 확인하십시오" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "끊어진 링크: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "앵커 '%s'을(를) 찾을 수 없습니다" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "linkcheck_allowed_redirects에서 정규식을 컴파일하지 못했습니다: %r %s" @@ -888,8 +888,8 @@ msgstr "Makefile 쓰기 오류: %s" msgid "The text files are in %(outdir)s." msgstr "텍스트 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "%s 파일 쓰기 오류: %s" @@ -899,7 +899,7 @@ msgstr "%s 파일 쓰기 오류: %s" msgid "The XML files are in %(outdir)s." msgstr "XML 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "의사 XML 파일은 %(outdir)s에 있습니다." @@ -920,7 +920,7 @@ msgid "Failed to read build info file: %r" msgstr "빌드 정보 파일을 읽을 수 없습니다: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -934,144 +934,144 @@ msgstr "전체 색인" msgid "index" msgstr "색인" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "다음" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "이전" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "색인 생성 중" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "추가 페이지 작성 중" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "다운로드 가능한 파일을 복사하는 중… " -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "다운로드 가능한 파일 %r을(를) 복사할 수 없습니다: %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "html_static_file에 있는 파일을 복사할 수 없습니다: %s: %r" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "정적 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "정적 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "추가 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "추가 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "빌드 정보 파일 쓰기 실패: %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "검색 색인을 불러올 수 없지만 모든 문서가 작성되지는 않은 것은 아닙니다. 색인이 불완전합니다." -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "%s 페이지가 html_sidebars의 두 패턴(%r 및 %r)과 일치합니다" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "%s 페이지를 렌더링 할 때 유니코드 오류가 발생했습니다. ASCII가 아닌 내용을 포함하는 모든 설정값이 유니코드 문자열인지 확인하십시오." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%s 페이지를 렌더링하는 중에 오류가 발생했습니다.\n원인: %r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "객체 인벤토리 덤프 중" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "%s에서 검색 인덱스 덤프 중" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "잘못된 js_file: %r, 무시합니다" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "여러 math_renderers가 등록되어 있습니다. 하지만 math_renderer가 선택되지 않았습니다." -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "알 수 없는 math_renderer %r이(가) 지정되었습니다." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "로고 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "Favicon 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks는 3.5.0 버전부터 더 이상 사용되지 않습니다. 대신 html_permalinks 및 html_permalinks_icon을 사용하십시오." -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s 문서" @@ -1097,7 +1097,7 @@ msgstr "\"latex_documents\" 설정값이 없으므로, 문서를 작성하지 msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" 설정값이 알 수 없는 문서 %s을(를) 참조합니다" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1150,66 +1150,66 @@ msgstr "%r에 \"theme\" 설정이 없습니다" msgid "%r doesn't have \"%s\" setting" msgstr "%r에 \"%s\" 설정이 없습니다" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "빌드하는 동안 예외 발생, 디버거 시작:" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "중단되었습니다!" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "reST 마크업 오류:" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "인코딩 오류:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "개발자에게 문제를 보고할 경우를 위해, 전체 역추적 정보가 %s에 저장되었습니다." -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "재귀 오류:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "이 상황은 매우 크거나 많이 중첩된 원본 파일에서 발생할 수 있습니다. 다음과 같이 conf.py에서 Python 재귀 제한 기본값 1000을 늘릴 수 있습니다 (주의):" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "예외 발생:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "사용자 오류인 경우에도 이를 보고하여, 다음에 더 나은 오류 메시지를 제공할 수 있도록 해 주십시오." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "버그 보고서는 <https://github.com/sphinx-doc/sphinx/issues>의 트래커에 제출할 수 있습니다. 감사합니다!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "작업 숫자는 양수여야 합니다" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "자세한 내용은 <https://www.sphinx-doc.org/>를 참조하십시오." -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1228,135 +1228,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "\n소스 파일로부터 문서를 생성합니다.\n\nsphinx-build는 SOURCEDIR에 있는 파일로부터 문서를 생성하여 OUTPUTDIR에 저장합니다.\n구성 설정을 위해 SOURCEDIR에서 'conf.py' 파일을 찾습니다.\n'sphinx-quickstart' 도구는 'conf.py'를 포함하여 템플릿 파일을 생성하는 데 사용할 수 있습니다.\n\nsphinx-build는 다양한 형식으로 문서를 생성할 수 있습니다.\n형식은 명령줄에서 빌더 이름을 지정하여 선택하며, 기본값은 HTML입니다.\n빌더는 문서 처리와 관련한 다른 태스크를 수행할 수도 있습니다.\n\n기본적으로 오래된 모든 항목을 빌드합니다.\n개별 파일명을 지정하여 선택한 파일에 대한 출력만 빌드할 수 있습니다.\n" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "문서 원본 파일의 경로" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "출력 디렉토리 경로" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "다시 빌드 할 특정 파일의 목록. -a가 지정되면 무시합니다" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "일반 옵션" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "사용할 빌더 (기본값: html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "모든 파일 기록 (기본값: 새 파일과 변경된 파일만 기록)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "저장된 환경을 사용하지 않고, 항상 모든 파일 읽기" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "캐시된 환경 및 doctree 파일 경로 (기본값: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "가능한 경우 N 개의 프로세스를 사용하여 병렬로 빌드 (특수 값 \"auto\"는 CPU 개수로 N 값을 설정합니다)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "구성 파일(conf.py)이 있는 경로 (기본값: SOURCEDIR과 동일)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "설정 파일을 전혀 사용하지 않고, -D 옵션들만 사용" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "구성 파일의 설정 무시" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "HTML 템플릿에 값 전달" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "태그를 정의: 태그가 있는 \"only\" 블록을 포함" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "까다로움 모드, 모든 누락된 참조에 대해 경고 발생" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "콘솔 출력 옵션" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "상세도 높임 (반복 가능)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "stdout에 출력하지 않고, stderr에 경고만 표시" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "경고를 포함하여 아무 출력도 하지 않음" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "컬러 출력 허용 (기본값: 자동 감지)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "컬러 출력을 허용하지 않음 (기본값: 자동 감지)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "주어진 파일에 경고(및 오류)를 기록" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "경고를 오류로 바꿈" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "-W와 함께 지정하여, 경고가 발생했을 때 계속 진행" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "예외 발생 시 전체 추적 표시" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "예외 발생 시 Pdb 실행" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "파일을 찾을 수 없습니다: %r" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "-a 옵션과 파일 이름을 함께 사용할 수 없습니다" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "경고 기록 파일 %r을(를) 열 수 없습니다: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "-D 옵션 인수는 name=value 형식이어야 합니다" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "-A 옵션 인수는 name=value 형식이어야 합니다" @@ -1900,44 +1900,44 @@ msgstr "반환" msgid "Return type" msgstr "반환 형식" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "멤버 변수" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "변수" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "함수" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "매크로" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "구조체" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "공용체" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "열거형" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "열거자" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "자료형" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "함수 매개변수" @@ -2060,7 +2060,7 @@ msgstr "중복된 %s 설명 (%s에 대한), 다른 항목은 %s (%s)에 있음" msgid "duplicate label of equation %s, other instance in %s" msgstr "중복 레이블의 수식 %s, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "잘못된 math_eqref_format: %r" @@ -2210,24 +2210,24 @@ msgstr "역할" msgid "duplicate description of %s %s, other instance in %s" msgstr "중복된 %s %s 설명, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "환경 변수; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "잘못된 옵션 설명 %r, \"opt\", \"-opt args\", \"--opt args\", \"/opt args\", \"+opt args\"와 같은 형식이어야 합니다" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "%s 명령줄 옵션" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "명령줄 옵션" @@ -2243,79 +2243,79 @@ msgstr "용어 정의는 빈 줄로 구분하면 안됩니다." msgid "glossary seems to be misformatted, check indentation" msgstr "용어 정의 형식이 잘못된 것 같습니다. 들여쓰기를 확인하십시오" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "용어 항목" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "문법 토큰" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "참조 레이블" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "환경 변수" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "프로그램 옵션" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "문서" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "모듈 목록" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "검색 페이지" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "중복 레이블 %s, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "중복된 %s 설명 (%s에 대한), 다른 인스턴스는 %s에 있음" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig가 비활성화되었습니다. :numref:는 무시됩니다." -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "상호 참조를 생성하지 못했습니다. 어떤 번호도 할당되지 않았습니다: %s" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "링크에 캡션이 없습니다: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "잘못된 numfig_format: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "잘못된 numfig_format: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "정의되지 않은 레이블: %s" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "상호 참조를 생성하지 못했습니다. 제목 또는 캡션을 찾을 수 없습니다: %s" @@ -2731,42 +2731,57 @@ msgstr "인라인 LaTeX %r: %s" msgid "Permalink to this equation" msgstr "이 수식에 대한 퍼머링크" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx 인벤토리가 이동함: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s 에서 intersphinx 인벤토리 로드 중…" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "일부 인벤토리에서 몇 가지 문제가 발생했지만, 동작하는 대체 인벤토리로 처리했습니다:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "다음 문제가 있어 어느 인벤토리도 도달하지 못했습니다:" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s에서)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(%s에서)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "외부 상호 참조에 대한 인벤토리를 찾을 수 없음: %s" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "외부 상호 참조에 대한 역할을 찾을 수 없음: %s" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "외부 %s:%s 참조 대상을 찾을 수 없음: %s" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx 식별자 %r이(가) 문자열이 아닙니다. 무시합니다" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "intersphinx_mapping[%s]을(를) 읽지 못했으며, 무시합니다: %r" @@ -2986,12 +3001,12 @@ msgstr "이름 %s을(를) 해석하지 못함" msgid "failed to import object %s" msgstr "객체 %s을(를) import 하지 못함" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 파일을 찾을 수 없음: %s" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3096,30 +3111,30 @@ msgstr "수신" msgid "References" msgstr "참조" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "경고" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "생성" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "잘못된 값 세트 (닫는 중괄호 누락): %s" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "잘못된 값 세트 (여는 중괄호 누락): %s" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "잘못된 문자열 리터럴 (닫는 따옴표 누락): %s" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "잘못된 문자열 리터럴 (여는 따옴표 누락): %s" @@ -3438,18 +3453,18 @@ msgstr "사이드바 닫기" msgid "Contents" msgstr "내용" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 개 열 기반 색인을 찾았습니다. 사용하고 있는 확장 기능의 버그일 수 있습니다: %r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "각주 [%s]이(가) 참조되지 않았습니다." -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "각주 [#]이 참조되지 않았습니다." @@ -3513,16 +3528,16 @@ msgstr "원격 이미지를 가져올 수 없습니다: %s [%s]" msgid "Unknown image format: %s..." msgstr "알 수 없는 이미지 형식: %s…" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "디코드 할 수 없는 원본 문자이며, \"?\"로 대체합니다: %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "건너뜀" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "실패" @@ -3533,12 +3548,12 @@ msgid "" "not in the domain." msgstr "%s 영역에서 문제 발생: 필드가 '%s' 역할을 사용해야 하지만, 해당 역할이 도메인에 없습니다." -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "알 수 없는 지시문 또는 역할 이름: %s:%s" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "알 수 없는 노드 유형: %r" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo Binary files differindex 0d65de8bb..d9463fed9 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 7ec3c82d6..a53b5dacc 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" "MIME-Version: 1.0\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,8 +887,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -933,144 +933,144 @@ msgstr "Bendras indeksas" msgid "index" msgstr "indeksas" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "kitas" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "praeitas" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1899,44 +1899,44 @@ msgstr "Grąžinamos reikšmės" msgid "Return type" msgstr "Grąžinamos reikšmės tipas" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "narys" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "kintamasis" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makrokomanda" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipas" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "rolė" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "aplinkos kintamasis; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "aiškinamasis terminas" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "gramatinė leksema" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "nuorodos požymis" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "aplinkos kintamasis" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "programos parinktis" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Modulio indeksas" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Paieškos puslapis" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2985,12 +3000,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3110,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,18 +3452,18 @@ msgstr "Paslėpti šoninę juostą" msgid "Contents" msgstr "Turinys" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3512,16 +3527,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo Binary files differindex a032f6a65..d18ccaf5d 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index cb55f142f..db16c59c3 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" "MIME-Version: 1.0\n" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -932,144 +932,144 @@ msgstr "Vispārējs indekss" msgid "index" msgstr "indekss" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "nākošais" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "iepriekšējs" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo Binary files differindex 506bc0058..3446f4f66 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index c05fc2a5a..1d0d82cc0 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "MIME-Version: 1.0\n" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -933,144 +933,144 @@ msgstr "Главна содржина" msgid "index" msgstr "содржина" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "следна" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "претходна" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s документација" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo Binary files differindex 43c40ebac..5bb42f455 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index ec7e08905..1975150fa 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -932,144 +932,144 @@ msgstr "Hovedindex" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "neste" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "forrige" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo Binary files differindex dc4c9e693..b34d5a217 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 477257c37..298174a63 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -934,144 +934,144 @@ msgstr "सामान्य अनुसुची" msgid "index" msgstr "अनुसुची" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "पछिल्लो" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "अघिल्लो" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2731,42 +2731,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3533,12 +3548,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo Binary files differindex c0c98790a..00727be19 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 63cb7938c..34990770e 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" "MIME-Version: 1.0\n" @@ -72,7 +72,7 @@ msgstr "'setup' gedefinieerd in conf.py is niet aanroepbaar (geen Python-callabl msgid "loading translations [%s]... " msgstr "laden van vertalingen [%s]... " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "klaar" @@ -199,27 +199,27 @@ msgstr "kan instelling %r niet overschrijven met zo'n waarde van een niet-onders msgid "unknown config value %r in override, ignoring" msgstr "onbekende configuratiewaarde %r tijdens overschrijven, wordt genegeerd" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Ongeldige configuratiewaarde: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Configuratiewaarde %r was reeds aangevoerd" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "Een fout heeft zich voorgedaan in uw configuratiebestand:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Sectie %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Codefragment %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r onbekend, wordt genegeerd." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -500,17 +500,17 @@ msgstr "instelling %s.%s komt niet voor in de doorzochte thema configuraties" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "bestand %r in thema pad is geen geldige zipfile of bevat geen thema" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "thema met naam %r niet gevonden (ontbrekende theme.conf?)" @@ -635,7 +635,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -645,7 +645,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -770,7 +770,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -793,22 +793,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -893,8 +893,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -904,7 +904,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -925,7 +925,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -939,144 +939,144 @@ msgstr "Algemene index" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "volgende" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "vorige" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s documentatie" @@ -1102,7 +1102,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1155,66 +1155,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1233,135 +1233,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "pad naar doelmap" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1905,44 +1905,44 @@ msgstr "Returns" msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "member" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variabele" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "functie" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2065,7 +2065,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicaatlabel van formule %s, andere in %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2215,24 +2215,24 @@ msgstr "rol" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "omgevingsvariabele; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2248,79 +2248,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "woordenlijstterm" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "grammaticatoken" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "verwijzingslabel" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "omgevingsvariabele" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "programmaoptie" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "document" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Module-index" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Zoekpagina" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "onderschrift ontbreekt voor link: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2736,42 +2736,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "Permalink naar deze formule" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2991,12 +3006,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3101,30 +3116,30 @@ msgstr "" msgid "References" msgstr "Verwijzingen" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3443,18 +3458,18 @@ msgstr "Zijpaneel inklappen" msgid "Contents" msgstr "Inhoudsopgave" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3518,16 +3533,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3538,12 +3553,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo Binary files differindex 49ffdf368..84d187c67 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 59aa71bbd..52c116730 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" "MIME-Version: 1.0\n" @@ -632,7 +632,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "kopiowanie obrazków..." @@ -642,7 +642,7 @@ msgstr "kopiowanie obrazków..." msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "nieprawidłowy css_file: %r, zignorowano" @@ -890,7 +890,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "Pliki tekstowe są w %(outdir)s." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -936,144 +936,144 @@ msgstr "Indeks ogólny" msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "dalej" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "wstecz" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "kopiowanie plików do pobrania..." -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "nie można skopiować pliku statycznego %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "nie można skopiować dodatkowego pliku %r" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Wystąpił błąd podczas renderowania strony %s.\nPowód: %r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "nieprawidłowy js_file: %r, zignorowano" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Podano nieznany math_renderer %r." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "plik favicon %r nie istnieje" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s - dokumentacja" @@ -2733,42 +2733,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "Stały odnośnik do tego równania" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(w %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr " (w %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3535,12 +3550,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo Binary files differindex c1e7ed95e..17e427479 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 9f4498b90..29a3f3351 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" "MIME-Version: 1.0\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -886,8 +886,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2984,12 +2999,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3109,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,18 +3451,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3511,16 +3526,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo Binary files differindex 67149ecaa..e761c6243 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 5ffe8f2a6..7041c1b8c 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 02:45+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 14:45+0000\n" "Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "“setup”, conforme definido atualmente em conf.py, não é um invocá msgid "loading translations [%s]... " msgstr "carregando traduções [%s]… " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "feito" @@ -198,27 +198,27 @@ msgstr "não é possível sobrescrever a configuração %r com tipo sem suporte, msgid "unknown config value %r in override, ignoring" msgstr "valor de configuração desconhecido %r na sobrescrita, ignorando" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Valor de configuração inexistente: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Valor da configuração %r já presente" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, 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:334 +#: sphinx/config.py:345 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:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,57 +226,57 @@ msgid "" "%s" msgstr "Há um erro de programável em seu arquivo de configuração:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, 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:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Seção %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Listagem %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 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:444 +#: sphinx/config.py:455 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:457 +#: sphinx/config.py:468 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:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r não encontrado, ignorado." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -499,17 +499,17 @@ msgstr "a configuração %s.%s ocorre em nenhuma das configurações de tema pes msgid "unsupported theme option %r given" msgstr "sem suporte à opção de tema %r fornecida" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "o arquivo %r no caminho de tema não é um arquivo zip válido ou contém nenhum tema" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "sphinx_rtd_theme (< 0.3.0) encontrado. Ele não estará disponível a partir do Sphinx-6.0" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "nenhum tema chamado %r encontrado (faltando theme.conf?)" @@ -634,7 +634,7 @@ msgstr "preparando documentos" msgid "duplicated ToC entry found: %s" msgstr "entrada de tabela de conteúdos duplicada encontrada: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "copiando imagens… " @@ -644,7 +644,7 @@ msgstr "copiando imagens… " msgid "cannot read image file %r: copying it instead" msgstr "não foi possível ler o arquivo de imagem %r: copiando-o" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -769,7 +769,7 @@ msgstr "o valor da configuração “epub_identifier” não deve estar vazio pa msgid "conf value \"version\" should not be empty for EPUB3" msgstr "o valor da configuração “version” não deve estar vazio para EPUB3" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" @@ -792,22 +792,22 @@ msgstr "lendo modelos… " msgid "writing message catalogs... " msgstr "escrevendo catálogos de mensagens… " -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Procure por quaisquer erros na saída acima ou em %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "link quebrado: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "Âncora “%s” não encontrada" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Falha ao compilar regex em linkcheck_allowed_redirects: %r %s" @@ -892,8 +892,8 @@ msgstr "erro ao escrever o arquivo Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Os arquivos texto estão em %(outdir)s." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "erro ao escrever o arquivo %s: %s" @@ -903,7 +903,7 @@ msgstr "erro ao escrever o arquivo %s: %s" msgid "The XML files are in %(outdir)s." msgstr "Os arquivos XML estão em %(outdir)s." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Os arquivos pseudo-XML estão em %(outdir)s." @@ -924,7 +924,7 @@ msgid "Failed to read build info file: %r" msgstr "Falha ao ler o arquivo de informações de compilação: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -938,144 +938,144 @@ msgstr "Índice Geral" msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "próximo" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "gerando índices" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "escrevendo páginas adicionais" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "copiando arquivos baixáveis… " -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "não foi possível copiar o arquivo baixável %r: %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Falha ao copiar um arquivo em html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "copiando arquivos estáticos" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "não foi possível copiar o arquivo estático %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "copiando arquivos extras" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "não foi possível copiar o arquivo extra %r" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "Falha ao escrever o arquivo de informações de compilação: %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "não foi possível carregar o índice de pesquisa, mas nem todos os documentos serão compilados: o índice ficará incompleto." -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "a página %s corresponde a dois padrões em html_sidebars: %r e %r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ocorreu um erro Unicode ao renderizar a página %s. Verifique se todos os valores de configuração que contêm conteúdo não ASCII são strings Unicode." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ocorreu um erro ao renderizar a página %s.\nMotivo: %r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "despejando inventário de objetos" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "despejando índice de pesquisa em %s" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Muitos math_renders estão registrados, mas nenhum math_renderer está selecionado." -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer desconhecido %r é fornecido." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "a entrada de html_extra_path %r não existe" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "entrada de html_extra_path %r está posicionada dentro de outdir" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "a entrada de html_static_path %r não existe" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "entrada de html_static_path %r está posicionada dento de outdir" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "o arquivo logo %r não existe" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "o arquivo favicon %r não existe" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks foi descontinuado desde v3.5.0. Use html_permalinks e html_permalinks_icon." -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "documentação %s %s" @@ -1101,7 +1101,7 @@ msgstr "nenhuma valor da configuração “latex_documents” encontrado; nenhum msgid "\"latex_documents\" config value references unknown document %s" msgstr "o valor da configuração “latex_documents” faz referência a um documento desconhecido %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1154,66 +1154,66 @@ msgstr "%r não possui a configuração \"theme\"" msgid "%r doesn't have \"%s\" setting" msgstr "%r não possui a configuração \"%s\"" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "Ocorreu uma exceção enquanto compilava, iniciando depurador:" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "Interrompido!" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "Erro de marcação reST:" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "Erro de codificação:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "O rastro completo foi salvo em %s, caso você queira relatar o problema aos desenvolvedores." -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "Erro de recursão:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "Isso pode acontecer com arquivos fonte muito grande e profundamente aninhados. Você pode aumentar com cuidado o limite padrão de recursão do Python de 1000 no conf.py com, por exemplo:" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "Ocorreu uma exceção:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "Por favor, relate isso também se houver um erro do usuário, para que uma mensagem de erro melhor possa ser fornecida na próxima vez." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "Um relatório de erro pode ser preenchido no rastreador em <https://github.com/sphinx-doc/sphinx/issues>. Obrigado!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "número de tarefas deve ser um número positivo" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "Para mais informações, visite <https://www.sphinx-doc.org/>." -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1232,135 +1232,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "\nGera documentação de arquivos fonte.\n\nsphinx-build gera documentação a partir dos arquivos em SOURCEDIR e os coloca\nem OUTPUTDIR. Ele procura por \"conf.py\" em SOURCEDIR para a configuração\ndefinições. A ferramenta \"sphinx-quickstart\" pode ser usada para gerar\narquivos de modelo, incluindo \"conf.py\"\n\nsphinx-build pode criar documentação em diferentes formatos. Um formato é\nselecionado especificando o nome do construtor na linha de comandos; o padrão\né HTML. Os construtores também podem realizar outras tarefas relacionadas à\ndocumentação em processamento.\n\nPor padrão, tudo o que está desatualizado é construído. Saída apenas para\nselecionado os arquivos podem ser construídas especificando nomes de arquivos\nindividuais.\n" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "caminho para os arquivos-fonte da documentação" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "caminho para o diretório de saída" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "uma lista de arquivos específicos para recompilar. Ignorado se -a for especificado" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "opções gerais" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "compilador para usar (padrão: html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "escrever todos os arquivos (padrão: escrever apenas arquivos novos e alterados)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "não usa um ambiente salvo, sempre lê todos os arquivos" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "caminho para o ambiente em cache e arquivos doctree (padrão: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "compila em paralelo com N processos onde possível (o valor especial “auto” será definido com N para número de CPUs)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "caminho no qual o arquivo de configuração (conf.py) está localizado (padrão: mesmo que SOURCEDIR)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "usa nenhum arquivo de configuração, apenas as opções -D" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "sobrescreve a configuração no arquivo de configuração" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "passa um valor para modelos em HTML" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "define tag: inclui blocos “only” com TAG" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "modo exigente, avisa sobre todas as referências em falta" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "opções de saída do console" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "aumenta o nível de detalhamento (pode ser repetido)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "nenhuma saída para stdout, apenas avisos na stderr" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "nenhuma saída, nem mesmo avisos" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "emite saída colorida (padrão: detectar automaticamente)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "não emite saída colorida (padrão: detectar automaticamente)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "escreve avisos (e erros) para o arquivo fornecido" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "transforma avisos em erros" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "com -W, segue em frente ao receber avisos" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "mostra rastro completo em exceção" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "executa Pdb na exceção" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "não foi possível localizar os arquivos %r" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "não é possível combinar a opção -a e nomes de arquivos" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "não foi possível abrir o arquivo de aviso %r: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "o argumento da opção -D deve estar no formato nome=valor" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "o argumento da opção -A deve estar no formato nome=valor" @@ -1904,44 +1904,44 @@ msgstr "Retorna" msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variável" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "função" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "struct" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "união" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerador" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "parâmetro de função" @@ -2064,7 +2064,7 @@ msgstr "descrição duplicada de %s de %s, outro %s em %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "rótulo duplicado da equação %s, outra instância em %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format inválido: %r" @@ -2214,24 +2214,24 @@ msgstr "papel" msgid "duplicate description of %s %s, other instance in %s" msgstr "descrição duplicada de %s %s, outra instância em %s" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "váriavel de ambiente; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Descrição de opção %r malformada, deve se parecer com “opt”, “-opt args”, “--opt args”, “/opt args” ou “+opt args”" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "%s opção de linha de comando" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "opção de linha de comando" @@ -2247,79 +2247,79 @@ msgstr "termos de glossário não devem ser separados por linhas vazias" msgid "glossary seems to be misformatted, check indentation" msgstr "o glossário parece estar mal formatado, confira o recuo" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "Glossário de Termos" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "termo gramatical" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "marca referencial" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "váriavel de ambiente" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "opção do programa" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Índice do Módulo" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Busca" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "rótulo duplicada %s, outra instância em %s" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "descrição duplicada de %s de %s, outra instância em %s" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig está desabilitado. :numref: é ignorado." -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Falha ao criar uma referência cruzada. Qualquer número não foi atribuído: %s" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "o link não possui legenda: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format inválido: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format inválido: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "rótulo não definido: %s" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format 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" @@ -2735,42 +2735,57 @@ 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:179 #, 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:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "carregando inventário intersphinx de %s…" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 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:230 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:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(em %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "inventário para referência cruzada externa não encontrado: %s" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "papel para referência cruzada externa não encontrado: %s" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "alvo da referência externa %s:%s não encontrado: %s" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identificador intersphinx %r não é uma string. Ignorado" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Falha ao ler intersphinx_mapping[%s], ignorado: %r" @@ -2990,12 +3005,12 @@ msgstr "falha ao analisar o nome %s" msgid "failed to import object %s" msgstr "falha ao importar o objecto %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: arquivo não encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3100,30 +3115,30 @@ msgstr "Recebe" msgid "References" msgstr "Referências" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "Avisos" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "Yields" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "valor inválido definido (faltando chave de fechamento): %s" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "valor inválido definido (faltando chave de abertura): %s" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "string literal malformada (faltando aspas de fechamento): %s" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "string literal malformada (faltando aspas de abertura): %s" @@ -3442,18 +3457,18 @@ msgstr "Recolher painel lateral" msgid "Contents" msgstr "Conteúdos" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "Um índice de 4 colunas encontrado. Pode ser um erro de extensões que você usa: %r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Nota de rodapé [%s] não é referenciada." -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "Nota de rodapé [#] não é referenciada." @@ -3517,16 +3532,16 @@ msgstr "Não foi possível obter imagem remota: %s [%s]" msgid "Unknown image format: %s..." msgstr "Formato de imagem desconhecido: %s…" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "caracteres de origem não codificáveis, substituindo por “?”: %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "ignorado" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "falhou" @@ -3537,12 +3552,12 @@ msgid "" "not in the domain." msgstr "Problema no domínio %s: o campo deveria usar o papel \"%s\", mas esse papel não está no domínio." -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "diretiva ou nome de papel desconhecida(o): %s:%s" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "tipo de nó desconhecido: %r" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo Binary files differindex 50a379b9e..25ecc4e27 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 4a60f34c6..13de2c72c 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -934,144 +934,144 @@ msgstr "Índice Geral" msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "próximo" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "Documentação %s %s" @@ -2731,42 +2731,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3533,12 +3548,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo Binary files differindex b6660dea8..9ff6f4154 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index e1efb5040..3183331cc 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "MIME-Version: 1.0\n" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -934,144 +934,144 @@ msgstr "Index General" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "următor" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "precedent" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s documentație" @@ -2731,42 +2731,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(în %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3533,12 +3548,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo Binary files differindex 76ae1730f..b63807ee3 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index e1eae7d4e..abaefb5cc 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "готово" @@ -198,27 +198,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Отсутствует ключ конфигурации %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Ключ конфигурации %r уже существует" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Файл конфигурации (или один из импортированных модулей) вызвал sys.exit()" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,57 +226,57 @@ msgid "" "%s" msgstr "В вашем файле конфигурации программная ошибка:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Раздел %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Рис. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Таблица %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Список %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -499,17 +499,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -634,7 +634,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -644,7 +644,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "Не получается считать файл изображение %r: скопируйте его" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -769,7 +769,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -792,22 +792,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -892,8 +892,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -903,7 +903,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -924,7 +924,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -938,144 +938,144 @@ msgstr "Алфавитный указатель" msgid "index" msgstr "указатель" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "вперёд" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "назад" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "документация %s %s" @@ -1101,7 +1101,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1154,66 +1154,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1232,135 +1232,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "Не получается найти файлы %r" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "Невозможно совмещать ключ -a и названия файлов" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "Не получается открыть файл с предупреждениями %r:%s " -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1904,44 +1904,44 @@ msgstr "Результат" msgid "Return type" msgstr "Тип результата" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "поле" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "переменная" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "функция" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "перечисляемый тип" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "перечислитель" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2064,7 +2064,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "повторяющаяся метка уравнения %s, также используется в %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2214,24 +2214,24 @@ msgstr "роль" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "переменная окружения; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2247,79 +2247,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "элемент словаря" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "токен грамматики" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "текст ссылки" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "переменная окружения" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "опция программы" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "документ" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Состав модуля" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Поиск" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2735,42 +2735,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "Ссылка на это уравнение" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(в %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2990,12 +3005,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3100,30 +3115,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "Предупрждения" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3442,18 +3457,18 @@ msgstr "Свернуть боковую панель" msgid "Contents" msgstr "Содержание" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3517,16 +3532,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3537,12 +3552,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo Binary files differindex 69f97f60b..10a9a71ab 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index fe03ff3a9..ee9d988ee 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" "MIME-Version: 1.0\n" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -933,144 +933,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "ඊළඟ" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "පෙර" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s ලේඛණය" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(%s හි%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo Binary files differindex 72ed2e6d9..d4b3ed202 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index d58ac1d20..ac08ffaf8 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "'setup' definovaný v conf.py nie je funkciou. Prosím, upravte jeho def msgid "loading translations [%s]... " msgstr "načítanie prekladov [%s]…" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "hotovo" @@ -195,27 +195,27 @@ msgstr "nemožno prepísať konfiguračné nastavenie %r s nepodporovaným typom msgid "unknown config value %r in override, ignoring" msgstr "neznáma konfiguračná hodnota %r v prepísaní, ignorované" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Neznáma konfiguračná hodnota: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Konfiguračná hodnota %r už existuje" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, 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:334 +#: sphinx/config.py:345 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:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -223,57 +223,57 @@ msgid "" "%s" msgstr "V konfiguračnom súbore je programová chyba:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, 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:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Sekcia %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabuľka %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 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:444 +#: sphinx/config.py:455 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:457 +#: sphinx/config.py:468 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:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nenájdená, ignorované." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -496,17 +496,17 @@ msgstr "nastavenie %s.%s nenájdené v žiadnom z nastavení témy" msgid "unsupported theme option %r given" msgstr "zadaná nepodporovaná voľba témy %r" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "súbor %r v ceste témy nie je platný súbor ZIP alebo neobsahuje tému" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "nájdená sphinx_rtd_theme (< 0.3.0). Táto nebude dostupná od Sphinx-6.0" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "nebola nájdená téma smenom %r (chýbajúci theme.conf?)" @@ -631,7 +631,7 @@ msgstr "príprava dokumentov" msgid "duplicated ToC entry found: %s" msgstr "nájdená duplicitná položka Obsahu: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "kopírovanie obrázkov…" @@ -641,7 +641,7 @@ msgstr "kopírovanie obrázkov…" msgid "cannot read image file %r: copying it instead" msgstr "nemožno čítať súbor obrázku %r: jeho kopírovanie namiesto toho" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "konfiguračná hodnota „epub_identifier” nesmie byť prázdna pri EP msgid "conf value \"version\" should not be empty for EPUB3" msgstr "konfiguračná hodnota „version” nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "neplatný css_file: %r, ignorovaný" @@ -789,22 +789,22 @@ msgstr "čítanie šablón… " msgid "writing message catalogs... " msgstr "zapisovanie katalógov správ…" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Hľadajte akékoľvek chyby v predošlom výstupe alebo v %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "poškodený odkaz: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "Kotva „%s” nenájdená" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -889,8 +889,8 @@ msgstr "chyba zápisu súboru Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Textové súbory sú v %(outdir)s." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "chyba zápisu súboru %s: %s" @@ -900,7 +900,7 @@ msgstr "chyba zápisu súboru %s: %s" msgid "The XML files are in %(outdir)s." msgstr "Súbory XML sú v %(outdir)s." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Súbory pseudo-XML sú v %(outdir)s." @@ -921,7 +921,7 @@ msgid "Failed to read build info file: %r" msgstr "Čítanie súboru zostavenia info zlyhalo: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -935,144 +935,144 @@ msgstr "Všeobecný index" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "ďalší" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "predošlý" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "generovanie indexov" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "zapisovanie dodatočných stránok" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "kopírovanie súborov na stiahnutie…" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "nemožno kopírovať súbor na stiahnutie %r: %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Kopírovanie súboru v html_static_file zlyhalo: %s: %r" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "kopírovanie statických súborov" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "nemožno kopírovať statický súbor %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "kopírovanie extra súborov" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "nemožno kopírovať extra súbor %r" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "Zápis súboru zostavenia info zlyhal: %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "index hľadania nemožno načítať, ale nebudú zostavované všetky dokumenty, takže index nebude kompletný." -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "stránka %s vyhovuje dvom vzorom v html_sidebars: %r a %r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "pri spracovaní stránky %s nastala chyba Unicode. Prosím, zaistite, že všetky konfiguračné hodnoty, ktoré obsahujú nieASCII hodnotu sú reťazce Unicode." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Nastala chyba pri spracovaní stránky %s.\nPríčina: %r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "generovanie inventára objektov…" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "generovanie indexu hľadania v %s" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "neplatné js_file: %r, ignorované" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Zaregistrovaných je viac math_renderer, ale žiadny nie je zvolený." -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Zdaný neznámy math_renderer %r." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "položka „html_extra_path entry” %r neexistuje" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "položka html_extra_path %r je umiestnené vo vnútri výstupného adresára" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "položka „html_static_path” %r neexistuje" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "položka html_static_path %r je umiestnené vo vnútri výstupného adresára" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "súbor loga %r neexistuje" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "súbor favicon %r neexistuje" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks bolo označené za zastarané od v3.5.0. Prosím, použite namiesto toho html_permalinks a html_permalinks_icon." -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "Dokumentácia %s %s" @@ -1098,7 +1098,7 @@ msgstr "nebola nájdená konfiguračná voľba „latex_documents”; dokmenty n msgid "\"latex_documents\" config value references unknown document %s" msgstr "konfiguračná voľba „latex_documents” odkazuje na neznámy dokument %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1151,66 +1151,66 @@ msgstr "%r nemá nastavenia „theme”" msgid "%r doesn't have \"%s\" setting" msgstr "téma %r nemá nastavenie „1%s”" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "Počas zostavenia sa vyskytla výnimka, spúšťam ladenie:" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "Prerušené!" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "Chyba značky reST:" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "Chyba kódovania:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "Úplný záznam chýb bol zapísaný v %s, ak chcete nahlásiť problém vývojárom." -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "Chyba rekurzie:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "Toto môže nastať s veľmi veľkými alebo príliš hlboko vnáranými zdrojovými súbormi. môžete opatrne zvýšiť predvolenú hodnotu limitu rekurzie Python z 1000 v conf.py, napr.:" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "Nastala výnimka:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "Prosím, nahláste to, i keď to bola chyba používateľa, aby mohla byť nabudúce poskytnutá lepšia chybová správa." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "Hlásenie o chybe možno vyplniť na <https://github.com/sphinx-doc/sphinx/issues>. Ďakujeme!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "počet úloh musí byť kladné číslo" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1229,135 +1229,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "\nGeneruje dokumentáciu zo zdrojových súborov.\n\nsphinx-build generuje dokumentáciu zo súborov v SOURCEDIR a umiestni ju\nv OUTPUTDIR. Konfiguračné voľby hľadá v 'conf.py' v SOURCEDIR.\nNa generovanie súborov šablón, vrátane 'conf.py' možno použiť nástroj\n'sphinx-quickstart'\n\nsphinx-build dokáže vytvoriť dokumentáciu v rôznych formátoch. Formát je\nzvolený zadaním mena zostavovača v príkazovom riadku; predvolene\nHTML. Zostavovače môžu vykonávať aj iné úlohy, ktoré súvisia so spracovaním\ndokuemntácie.\n\nPredvolene je zostavené všetko, čo bolo zmenené. Výstup len zvolených súborov\nmôže byť zostavený zadaním jednotlivých mien súborov.\n" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "cesta k zdrojovým súborom dokumentácie" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "cesta k výstupnej zložke" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "zoznam špecifických súborov na zostavenie, ignorovaný ak je použité -a" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "všeobecné voľby" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "použitý zostavovač (predvolený: html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "zapísať všetky súbory (predvolene: zapísať len nové a zmenené súbory)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "nepoužívať uložené prostredie, vždy čítať všetky súbory" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "cesta uloženého prostredia a súbory doctree (predvolene: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "zostaviť paralelne s N procesmi možné (špeciálna hodnota „auto” nastaví N na počet CPU)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "cesta k adresáru s konfiguračným súborom (conf.py) (predvolene: rovnaké ako SOURCEDIR)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "vôbec nepoužiť konfiguračný súbor, len voľby -D" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "prepíše nastavenie konfiguračného súboru" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "pošle hodnotu do šablón HTML" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "hnidopichný režim, upozorniť na všetky chýbajúce prepojenia" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "voľby výstupu konzoly" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "zvýšiť rozvláčnosť (možno opakovať)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "žiadny výstup, len upozornenia na stderr" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "vôbec žiadny výstup, ani upozornenia" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "generovať farebný výstup (predvolene: automaticky detegovať)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "negenerovať farebný výstup (predvolene: automaticky detegovať)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "zapísať varovania (a chyby) do zadaného súboru" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "prepnúť upozornenia na chyby" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "s -W, pokračovať po upozornení" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "pri výnimke zobraziť úplné chybové hlásenie" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "pri výnimke spustiť Pdb" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "nemožno nájsť súbory %r" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "nemožno kombinovať voľbu -a a mená súborov" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "nemožno otvoriť súbor varovaní %r: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "argument voľby -D musí byť v tvare meno=hodnota" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "argument voľby -A musí byť v tvare meno=hodnota" @@ -1901,44 +1901,44 @@ msgstr "Vracia" msgid "Return type" msgstr "Návratový typ" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "premenná" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcia" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "parameter funkcie" @@ -2061,7 +2061,7 @@ msgstr "duplicitný %s popis %s, ďalší výskyt%s v %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicitná menovka vzorca %s, ďalší výskyt v %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "neplatný math_eqref_format: %r" @@ -2211,24 +2211,24 @@ msgstr "rola" msgid "duplicate description of %s %s, other instance in %s" msgstr "duplicitný popis %s %s, ďalší výskyt v %s" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "premenná prostredia; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Nesprávny popis voľby %r, má vyzerať ako „opt”, „-opt argumenty”, „--opt argumenty”, „/opt argumenty” alebo „+opt argumenty”" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "%s voľba príkazového riadka" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "voľba príkazového riadka" @@ -2244,79 +2244,79 @@ msgstr "položky glosára nesmú byť oddelené prázdnymi riadkami" msgid "glossary seems to be misformatted, check indentation" msgstr "glosár vyzerá byť zle naformátovaný, skontrolujte odsadenie" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "termín glosára" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "jazykový token" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "menovka odkazu" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "premenná prostredia" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "voľba programu" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Index modulov" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Stránka hľadania" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "duplicitná menovka %s, ďalší výskyt v %s" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "duplicitný %s popis %s, ďalší výskyt v %s" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig je vypnutý, :numref: je ignorované." -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Zlyhalo vytvorenie krížového odkazu. Nie je priradené žiadne číslo: %s" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "odkaz nemá popisok: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "neplatný numfig_format: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "neplatný numfig_format: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "nedefinovaná menovka: %s" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format 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" @@ -2732,42 +2732,57 @@ 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:179 #, 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:210 #, 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:224 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:230 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:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(v %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identifikátor intersphinx %rnie je raťzec, ignorované" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Zlyhalo čítanie intersphinx_mapping[%s], ignorované: %r" @@ -2987,12 +3002,12 @@ msgstr "zlyhalo spracovanie mena %s" msgid "failed to import object %s" msgstr "zlyhal import objektu %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: súbor nenájdený: %s" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3097,30 +3112,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "Varovania" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "neplatná hodnota množiny (chýba koncová zátvorka): %s" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "neplatná hodnota množiny (chýba začiatočná zátvorka): %s" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "neplatná textová konštanta (chýba koncová úvodzovka): %s" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "neplatná textová konštanta (chýba začiatočná úvodzovka): %s" @@ -3439,18 +3454,18 @@ msgstr "Zbaliť bočný panel" msgid "Contents" msgstr "Obsah" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Poznámka pod čiarou [%s] nie je odkazovaná." -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "Poznámka pod čiarou [#] nie je odkazovaná." @@ -3514,16 +3529,16 @@ msgstr "Nemožno získať vzdialený obrázok: %s [%s]" msgid "Unknown image format: %s..." msgstr "Neznámy formát obrázku: %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "nedekódovateľné zdrojové znaky, nahradené „?”: %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "preskočené" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "zlyhalo" @@ -3534,12 +3549,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "neznáma direktíva alebo meno role: %s:%s" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "neznámy typ uzla: %r" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo Binary files differindex 2ba41d8e0..be8f255e6 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 9dc5eac0f..6a74ac273 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "MIME-Version: 1.0\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -886,8 +886,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -932,144 +932,144 @@ msgstr "Splošni abecedni seznam" msgid "index" msgstr "abecedni seznam" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "naprej" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "nazaj" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1898,44 +1898,44 @@ msgstr "Vrne" msgid "Return type" msgstr "Vrne tip" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "član" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "okoljska spremenljivka; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "okoljska spremenljivka" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Seznam modulov" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Iskalnik" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2984,12 +2999,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3109,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,18 +3451,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3511,16 +3526,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index fc6370222..401e21530 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Sphinx 4.4.0\n" +"Project-Id-Version: Sphinx 4.5.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -769,7 +769,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -892,7 +892,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -938,144 +938,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the" " index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all" " config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2746,42 +2746,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had " "working alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3550,12 +3565,12 @@ msgid "" "is not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo Binary files differindex 8cb343351..39e98be65 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index defed56e5..9c01f9285 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 15:07+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 09:44+0000\n" "Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" "MIME-Version: 1.0\n" @@ -629,7 +629,7 @@ msgstr "po përgatiten dokumente" msgid "duplicated ToC entry found: %s" msgstr "u gjet zë TeL i përsëdytur: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "po kopjohen figura… " @@ -639,7 +639,7 @@ msgstr "po kopjohen figura… " msgid "cannot read image file %r: copying it instead" msgstr "s’lexohet dot kartelë figure %r: në vend të tij, po kopjohet" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "vlera e formësimit \"epub_identifier\" s’duhet të jetë e zbrazët p msgid "conf value \"version\" should not be empty for EPUB3" msgstr "vlera e formësimit \"version\" s’duhet të jetë e zbrazët për EPUB3" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file e pavlefshme: %r, u shpërfill" @@ -887,7 +887,7 @@ msgstr "gabim në shkrim kartele Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Kartelat tekst gjenden në %(outdir)s." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -933,144 +933,144 @@ msgstr "Tregues i Përgjithshëm" msgid "index" msgstr "tregues" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "pasuesi" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "i mëparshmi" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "po prodhohen tregues" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "po shkruhen faqe shtesë" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "po kopjohen kartela të shkarkueshme… " -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "s’kopjohet dot kartelë e shkarkueshme %r: %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "S’u arrit të kopjohet një kartelë te html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "po kopjohen kartela statike" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "s’kopjohet dot kartelë statike %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "po kopjohen kartela ekstra" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "s’kopjohet dot kartelë ekstra %r" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "S’u arrit të shkruhet kartelë të dhënash montimi: %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "treguesi i kërkimi s’u ngarkua dot, por jo krejt dokumentet do të montohen: treguesi do të jetë i paplotë." -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "faqja %s ka përputhje me dy rregullsi te html_sidebars: %r dhe %r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ndodhi një gabim Unikod, kur vizatohej faqja %s. Ju lutemi, siguroni që krejt vlerat e formësimit që përmbajnë lëndë jo-ASCII të jenë vargje Unikod." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ndodhi një gabim gjatë vizatimit të faqes %s.\nArsye: %r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "po shkruhet lënda e treguesit të kërkimeve në %s" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file e pavlefshme: %r, u shpërfill" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Janë të regjistruar plot math_renderers. Por s’u përzgjodh math_renderer." -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "U dha math_renderer %r i panjohur." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "zëri html_extra_path %r s’ekziston" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "zëri %r i html_extra_path entry është vendosur jashtë outdir-it" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "zëri html_static_path %r s’ekziston" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "zëri %r i html_extra_path entry është vendosur brenda outdir-it" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "kartela stemë %r s’ekziston" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "kartela favikonë %r s’ekziston" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks është nxjerrë nga përdorimi që me v3.5.0. Ju lutemi, në vend të tyre përdorni html_permalinks dhe html_permalinks_icon." -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "Dokumentim i %s %s" @@ -2730,42 +2730,57 @@ msgstr "latex brendazi %r: %s" msgid "Permalink to this equation" msgstr "Permalidhje te ky ekuacion" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, 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:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "po ngarkohet inventari intersphinx prej %s…" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 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:230 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:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(te %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(te %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identifikuesi intersphinx %r s’është varg. U shpërfill" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "S’u arrit të lexohej intersphinx_mapping[%s], u shpërfill: %r" @@ -2851,7 +2866,7 @@ msgstr "atribut %s që mungon te objekt %s" msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "" +msgstr "autodoc: s’u arrit të përcaktohet %s.%s (%r) për t’u dokumentuar, u shfaq përjashtimi vijues:\n%s" #: sphinx/ext/autodoc/__init__.py:908 #, python-format @@ -3530,14 +3545,14 @@ msgstr "e dështuar" msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." -msgstr "" +msgstr "Problem në përkatësinë %s: fusha supozohet të përdorë rol '%s', por ai rol s’gjendet te përkatësia." -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "emër direktive ose roli të panjohur: %s:%s" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "lloj i panjohur nyjeje: %r" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo Binary files differindex 656ba0d19..4494a120a 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index b0c099773..72d1561d1 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "учитавање превода [%s]... " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "готово" @@ -194,27 +194,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -222,57 +222,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Одељак %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Сл. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Табела %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Списак %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -495,17 +495,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -630,7 +630,7 @@ msgstr "припремање докумената" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "пребацивање слика... " @@ -640,7 +640,7 @@ msgstr "пребацивање слика... " msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -788,22 +788,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -888,8 +888,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -899,7 +899,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -920,7 +920,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -934,144 +934,144 @@ msgstr "" msgid "index" msgstr "индекс" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "напред" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "назад" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "документација %s %s" @@ -1097,7 +1097,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1150,66 +1150,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1228,135 +1228,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "Резултат" msgid "Return type" msgstr "Тип резултата" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "променљива" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2210,24 +2210,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "променљива окружења; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2243,79 +2243,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "документ" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2731,42 +2731,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(у %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(у %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2986,12 +3001,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3096,30 +3111,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "Упозорења" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3438,18 +3453,18 @@ msgstr "" msgid "Contents" msgstr "Садржај" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3513,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3533,12 +3548,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo Binary files differindex 0b7565284..74dd57b5d 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 00937daee..d70e7a18d 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo Binary files differindex 62f460ac6..36ab8ef15 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index abe22be74..3d9304322 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" "MIME-Version: 1.0\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -886,8 +886,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2984,12 +2999,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3109,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,18 +3451,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3511,16 +3526,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo Binary files differindex 20d4aef14..88da8b312 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index cf32b11b5..bca95bd21 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" "MIME-Version: 1.0\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -886,8 +886,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -932,144 +932,144 @@ msgstr "Huvudindex" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "nästa" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "föregående" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1898,44 +1898,44 @@ msgstr "Returnerar" msgid "Return type" msgstr "Returtyp" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "roll" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "miljövariabel; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "ordlista" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "grammatisk token" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "referensetikett" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "miljövariabel" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "programväxel" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Söksida" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2984,12 +2999,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3109,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,18 +3451,18 @@ msgstr "Dölj sidolist" msgid "Contents" msgstr "Innehåll" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3511,16 +3526,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo Binary files differindex 6990462ae..d19fa7c4d 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index 6fe88e0d1..ac3eaa082 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" "MIME-Version: 1.0\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,8 +887,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -933,144 +933,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "அடுத்த" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1899,44 +1899,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2985,12 +3000,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3110,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,18 +3452,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3512,16 +3527,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo Binary files differindex 58166ca8b..ec5e565c9 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index e1ac1e170..1bfe6308a 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" "MIME-Version: 1.0\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -886,8 +886,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2984,12 +2999,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3109,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,18 +3451,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3511,16 +3526,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo Binary files differindex a690ab4df..236a8e3e4 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 38b74cffc..069dfe1d7 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "Şu anda conf.py dosyasında tanımlanan 'kurulum' çağrılabilir bir P msgid "loading translations [%s]... " msgstr "çeviriler yükleniyor [%s]... " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "bitti" @@ -196,27 +196,27 @@ msgstr "desteklenmeyen tür ile yapılandırma ayarı %r geçersiz kılınamaz, 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:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Böyle bir yapılandırma değeri yok: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Yapılandırma değeri %r zaten mevcut" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, 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:334 +#: sphinx/config.py:345 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:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -224,57 +224,57 @@ msgid "" "%s" msgstr "Yapılandırma dosyanızda programlanabilir bir hata var:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, 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:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Bölüm %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Şekil %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tablo %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Listeleme %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 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:444 +#: sphinx/config.py:455 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:457 +#: sphinx/config.py:468 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:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r bulunamadı, yoksayıldı." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -497,17 +497,17 @@ msgstr "%s.%s ayarı, aranan tema yapılandırmalarının hiçbirinde meydana ge msgid "unsupported theme option %r given" msgstr "desteklenmeyen tema seçeneği %r verildi" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "tema yolundaki %r dosyası geçerli bir zip dosyası değil ya da hiç tema içermiyor" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "%r adında bulunan tema yok (eksik theme.conf?)" @@ -632,7 +632,7 @@ msgstr "belgeler hazırlanıyor" msgid "duplicated ToC entry found: %s" msgstr "kopyalanmış ToC girişi bulundu: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "resimler kopyalanıyor..." @@ -642,7 +642,7 @@ msgstr "resimler kopyalanıyor..." msgid "cannot read image file %r: copying it instead" msgstr "resim dosyası %r okunamıyor: bunun yerine kopyalanıyor" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "yapılandırma değeri \"epub_identifier\", EPUB3 için boş olmamalıd msgid "conf value \"version\" should not be empty for EPUB3" msgstr "yapılandırma değeri \"version\", EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "geçersiz css_file: %r, yoksayıldı" @@ -790,22 +790,22 @@ msgstr "şablonlar okunuyor..." msgid "writing message catalogs... " msgstr "ileti katalogları yazılıyor..." -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Yukarıdaki çıktıda veya %(outdir)s/output.txt içinde herhangi bir hata arayın" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "bozuk bağlantı: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "Bağlayıcı '%s' bulunamadı" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -890,8 +890,8 @@ msgstr "Makefile dosyası yazılırken hata oldu: %s" msgid "The text files are in %(outdir)s." msgstr "Metin dosyaları %(outdir)s içinde." -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "%s dosyası yazılırken hata oldu: %s" @@ -901,7 +901,7 @@ msgstr "%s dosyası yazılırken hata oldu: %s" msgid "The XML files are in %(outdir)s." msgstr "XML dosyaları %(outdir)s içinde." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Pseudo-XML dosyaları %(outdir)s içinde." @@ -922,7 +922,7 @@ msgid "Failed to read build info file: %r" msgstr "oluşturma bilgisi dosyasını okuma başarısız: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -936,144 +936,144 @@ msgstr "Genel Dizin" msgid "index" msgstr "dizin" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "sonraki" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "önceki" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "dizinler oluşturuluyor" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "ilave sayfalar yazılıyor" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "indirilebilir dosyalar kopyalanıyor..." -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "indirilebilir dosya %r kopyalanamıyor: %s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "sabit dosya %r kopyalanamıyor" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "fazladan dosyalar kopyalanıyor" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "fazladan dosya %r kopyalanamıyor..." -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "oluşturma bilgisi dosyasını yazma başarısız: %r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "arama dizini yüklenemedi, ancak tüm belgeler oluşturulmayacaktır: dizin tamamlanmamış olacaktır." -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "sayfa %s html_sidebars içinde iki şekille eşleşiyor: %r ve %r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "%s sayfasını işlerken bir Evrensel kod hatası meydana geldi. Lütfen ASCII olmayan içerik içeren tüm yapılandırma değerlerinin Evrensel kod dizgiler olduğundan emin olun." -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%s sayfasını işlerken bir hata oldu.\nSebep: %r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "nesne envanteri dökümleniyor" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "%s içinde arama dizini dökümleniyor" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "geçersiz js_file: %r, yoksayıldı" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Birçok math_renderers kayıtlı. Ama hiç math_renderer seçilmedi." -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Bilinmeyen math_renderer %r verildi." -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path girişi %r mevcut değil" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path girişi %r, çıktı dizini içine yerleştirildi" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path girişi %r mevcut değil" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path girişi %r, çıktı dizini içine yerleştirildi" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "logo dosyası %r mevcut değil" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "favicon dosyası %r mevcut değil" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s belgelendirmesi" @@ -1099,7 +1099,7 @@ msgstr "hiçbir \"latex_documents\" yapılandırma değeri bulunamadı; hiçbir msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" yapılandırma değeri bilinmeyen %s belgesine başvurur" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1152,66 +1152,66 @@ msgstr "%r, \"theme\" ayarına sahip değil" msgid "%r doesn't have \"%s\" setting" msgstr "%r, \"%s\" ayarına sahip değil" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "Oluşturulurken meydana gelen özel durum, hata ayıklayıcı başlatılıyor:" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "Yarıda kesildi!" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "reST biçimlendirme hatası:" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "Kodlama hatası:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "Sorunu geliştiricilere bildirmek istiyorsanız, tam geri izleme %s içine kaydedildi." -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "Tekrarlama hatası:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "Özel durum meydana geldi:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "Bir dahaki sefere daha iyi bir hata iletisi sağlanabilmesi için lütfen bunu bir kullanıcı hatasıysa da bildirin." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "Bir hata raporu <https://github.com/sphinx-doc/sphinx/issues> adresindeki izleyicide dosyalanabilir. Teşekkürler!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "iş numarası pozitif bir sayı olmalıdır" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1230,135 +1230,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "belgelendirme kaynak dosyaları için yol" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "çıktı dizini için yol" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "yeniden oluşturmak için belirli dosyaların listesi. Belirtildiyse yoksayıldı" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "genel seçenekler" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "kullanmak için oluşturucu (varsayılan: html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "tüm dosyaları yaz (varsayılan: sadece yeni ve değiştirilmiş dosyaları yaz)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "kaydedilmiş bir ortam kullanma, her zaman tüm dosyaları oku" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "önbelleklenen ortam ve doctree dosyaları için yol (varsayılan: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "mümkünse N işlem ile paralel olarak oluştur (özel değer \"auto\" N miktarını cpu-count değerine ayarlayacak)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "yapılandırma dosyasının (conf.py) bulunduğu yol (varsayılan: SOURCEDIR ile aynı)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "hiç yapılandırma dosyası kullanmadan, sadece -D seçenekleri" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "yapılandırma dosyasındaki bir ayarı geçersiz kıl" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "HTML şablonlarına bir değer geçir" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "etiketi tanımla: \"sadece\" TAG'li blokları dahil et" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "nit-picky kipi, tüm eksik kaynaklar hakkında uyar" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "konsol çıktısı seçenekleri" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "ayrıntı seviyesini artır (tekrarlanabilir)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "stdout üzerinde çıktı yok, stderr üzerinde sadece uyarılar" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "hiç çıktı yok, hatta uyarılarda bile" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "renkli çıktı yayımı yap (varsayılan: otomatik algıla)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "renkli çıktı yayımı yapma (varsayılan: otomatik algıla)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "verilen dosyaya uyarıları (ve hataları) yaz" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "uyarıları hatalara dönüştür" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "-W ile, uyarıları alırken devam et" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "özel durumda tam geri izleme göster" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "özel durumda Pdb çalıştır" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "%r dosyaları bulunamıyor" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "-a seçeneği ve dosya adları birleştirilemiyor" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "uyarı dosyası %r açılamıyor: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "-D seçeneği bağımsız değişkeni ad=değer biçiminde olmak zorundadır" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "-A seçeneği bağımsız değişkeni ad=değer biçiminde olmak zorundadır" @@ -1902,44 +1902,44 @@ msgstr "Dönüşler" msgid "Return type" msgstr "Dönüş türü" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "üyesi" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "değişkeni" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "işlevi" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makrosu" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "birliği" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "numaralandırıcı" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "türü" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2062,7 +2062,7 @@ msgstr "kopya %s açıklamasına ait %s, diğer %s, %s içinde" msgid "duplicate label of equation %s, other instance in %s" msgstr "%s denkleminin kopya etiketi, %s içindeki diğer örnek" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Geçersiz math_eqref_format: %r" @@ -2212,24 +2212,24 @@ msgstr "rolü" msgid "duplicate description of %s %s, other instance in %s" msgstr "%s %s kopya açıklaması, %s içindeki diğer örnek" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "ortam değişkeni; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Hatalı biçimlendirilmiş seçenek açıklaması %r, \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" veya \"+opt args\" şeklinde görünmelidir" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "%s komut satırı seçeneği" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "komut satırı seçeneği" @@ -2245,79 +2245,79 @@ msgstr "sözlük terimleri boş satırlarla ayrılmamak zorundadır" msgid "glossary seems to be misformatted, check indentation" msgstr "sözlük yanlış biçimlendirilmiş gibi görünüyor, girintiyi gözden geçirin" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "sözlük terimi" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "dilbilgisi belirteci" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "başvuru etiketi" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "ortam değişkeni" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "program seçeneği" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "belge" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Modül Dizini" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Arama Sayfası" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "%s kopya etiketi, %s içindeki diğer örnek" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "kopya %s açıklamasına ait %s, %s içindeki diğer örnek " -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig etkisizleştirildi. :numref: yoksayıldı." -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "bağlantının resim yazısı yok: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "geçersiz numfig_format: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "geçersiz numfig_format: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2733,42 +2733,57 @@ 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:179 #, 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:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s konumundan intersphinx envanteri yükleniyor..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 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:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s içinde)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(%s içinde)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2988,12 +3003,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3098,30 +3113,30 @@ msgstr "" msgid "References" msgstr "Kaynaklar" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "Uyarılar" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "Getiriler" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3440,18 +3455,18 @@ msgstr "Yan çubuğu daralt" msgid "Contents" msgstr "İçindekiler" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3515,16 +3530,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "Bilinmeyen resim biçimi: %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "atlandı" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "başarısız oldu" @@ -3535,12 +3550,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo Binary files differindex 848afa2ed..76cdc690a 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 85574c970..54d1e881a 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" "MIME-Version: 1.0\n" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -933,144 +933,144 @@ msgstr "Загальний індекс" msgid "index" msgstr "індекс" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "наступний" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "попередній" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo Binary files differindex 3854364d6..4e203fdf2 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 22bc490f1..d5fd0f6c9 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" "MIME-Version: 1.0\n" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo Binary files differindex 1fb39989a..7fc954ab7 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 5a918e428..eebfab684 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" "MIME-Version: 1.0\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,8 +887,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -933,144 +933,144 @@ msgstr "Chỉ mục chung" msgid "index" msgstr "chỉ mục" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "xem tiếp" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "xem lại" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "Tài liệu %s %s" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1899,44 +1899,44 @@ msgstr "Trả về" msgid "Return type" msgstr "Kiểu trả về" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "thuộc tính" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "biến" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "hàm" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "kiểu" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "vai trò" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "các biến môi trường; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "chú giải thuật ngữ" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2730,42 +2730,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2985,12 +3000,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3110,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,18 +3452,18 @@ msgstr "" msgid "Contents" msgstr "Nội dung" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3512,16 +3527,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3532,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo Binary files differindex 14d0995ed..872b145eb 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index ab07aa1b3..34e90c9a0 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-09 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" "MIME-Version: 1.0\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -886,8 +886,8 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2984,12 +2999,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3109,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,18 +3451,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3511,16 +3526,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js index 3a241a6e6..5be8f8339 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js @@ -13,7 +13,7 @@ Documentation.addTranslations({ "Complete Table of Contents": "\u5b8c\u6574\u7684\u5185\u5bb9\u8868", "Contents": "\u76ee\u5f55", "Copyright": "\u7248\u6743\u6240\u6709", - "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", + "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u7531 <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s\u521b\u5efa\u3002", "Expand sidebar": "\u5c55\u5f00\u8fb9\u680f", "Full index on one page": "\u4e00\u9875\u7684\u5168\u90e8\u7d22\u5f15", "General Index": "\u603b\u76ee\u5f55", diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo Binary files differindex f32523ef3..9416c8b2d 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 0d903dcb4..cd7764521 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -12,6 +12,7 @@ # Nomaka <nomakacyx@gmail.com>, 2018 # Lenville Leo <lenville@gmail.com>, 2013 # Lenville Leo <lenville@gmail.com>, 2013 +# Lu <lu2github@gmail.com>, 2022 # Nomaka <nomakacyx@gmail.com>, 2018 # Ryekee Zhong <ryekee@gmail.com>, 2013 # Komiya Takeshi <i.tkomiya@gmail.com>, 2019,2021 @@ -23,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-10 05:20+0000\n" -"Last-Translator: JY3\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 11:41+0000\n" +"Last-Translator: Lu <lu2github@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,7 +43,7 @@ msgstr "无法找到源码目录 (%s)" #: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" -msgstr "" +msgstr "输出目录(%s)不是一个目录" #: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" @@ -290,7 +291,7 @@ msgstr "未找到 primary_domain %r,已忽略。" msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." -msgstr "" +msgstr "从 v2.0, Sphinx 默认使用 \"index\" 作为 root_doc。请在你的 conf.py 添加 \"root_doc = 'contents'\"。" #: sphinx/events.py:67 #, python-format @@ -305,7 +306,7 @@ msgstr "未知事件名称:%s" #: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" -msgstr "" +msgstr "%r Handler 对事件 %r 抛出了异常" #: sphinx/extension.py:52 #, python-format @@ -336,7 +337,7 @@ msgstr "无法按照“%s”语言的词法解析代码块,跳过语法高亮 msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." -msgstr "" +msgstr "为 \"%s\" 找到了多个文件: %r\n使用 %r 进行构建。" #: sphinx/project.py:59 msgid "document not readable. Ignored." @@ -430,7 +431,7 @@ msgstr "可数节点 %r 已注册" #: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" -msgstr "" +msgstr "公式渲染器 %s 已注册" #: sphinx/registry.py:424 #, python-format @@ -477,12 +478,12 @@ msgstr "Python 提高建议; PEP %s" #: sphinx/roles.py:193 #, python-format msgid "invalid PEP number %s" -msgstr "" +msgstr "无效的 PEP 编号%s" #: sphinx/roles.py:227 #, python-format msgid "invalid RFC number %s" -msgstr "" +msgstr "无效的 RFC 编号 %s" #: sphinx/theming.py:80 #, python-format @@ -517,7 +518,7 @@ msgstr "主题路径指定的文件 %r 是一个无效的或不包含主题的 #: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" -msgstr "" +msgstr "检测到 sphinx_rtd_theme (< 0.3.0) 。它从 Sphinx-6.0 后不再可用" #: sphinx/theming.py:249 #, python-format @@ -644,7 +645,7 @@ msgstr "准备文件" msgid "duplicated ToC entry found: %s" msgstr "找到重复的ToC条目: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "复制图像... " @@ -654,7 +655,7 @@ msgstr "复制图像... " msgid "cannot read image file %r: copying it instead" msgstr "无法读取图像文件 %r:直接复制" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -671,15 +672,15 @@ msgstr "未找到Pillow - 复制图像文件" #: sphinx/builders/_epub_base.py:471 msgid "writing mimetype file..." -msgstr "" +msgstr "写入 mimetype 文件中……" #: sphinx/builders/_epub_base.py:476 msgid "writing META-INF/container.xml file..." -msgstr "" +msgstr "写入 META-INF/container.xml 文件中……" #: sphinx/builders/_epub_base.py:504 msgid "writing content.opf file..." -msgstr "" +msgstr "写入 content.opf 文件中……" #: sphinx/builders/_epub_base.py:530 #, python-format @@ -688,7 +689,7 @@ msgstr "%s 的 MIME 类型未知,将被忽略" #: sphinx/builders/_epub_base.py:677 msgid "writing toc.ncx file..." -msgstr "" +msgstr "写入 toc.ncx 文件中……" #: sphinx/builders/_epub_base.py:702 #, python-format @@ -737,7 +738,7 @@ msgstr "ePub文件保存在 %(outdir)s。" #: sphinx/builders/epub3.py:165 msgid "writing nav.xhtml file..." -msgstr "" +msgstr "写入 nav.xhtml 文件中……" #: sphinx/builders/epub3.py:191 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" @@ -779,7 +780,7 @@ msgstr "对于 EPUB3 格式,配置项“epub_identifier”不能为空" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“version”不能为空" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "无效的 css_file:%r,已忽略" @@ -902,7 +903,7 @@ msgstr "错误写入文件 Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "文本文件保存在 %(outdir)s 目录。" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -948,144 +949,144 @@ msgstr "总目录" msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "下一页" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "上一页" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "正在生成索引" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "正在写入附加页面" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "复制可下载文件... " -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "无法复制可下载文件 %r:%s" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" -msgstr "" +msgstr "正在复制静态文件" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "无法复制静态文件 %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "正在复制额外文件" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "无法复制额外文件 %r" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "写入构建信息文件失败:%r" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "无法加载搜索索引,不会构建所有文档:索引将不完整。" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "页面 %s 匹配了 html_sidebars 中的两条规则:%r 和 %r" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "渲染页面 %s 时发生了 Unicode 错误。请确保所有包含非 ASCII 字符的配置项是 Unicode 字符串。" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "渲染页面 %s 时发生了错误。\n原因:%r" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "正在导出对象清单" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "正在导出 %s 的搜索索引" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "无效的 js_file:%r,已忽略" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "注册了多个 math_renderers。但没有选择任何 math_renderer。" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "给定了未知的 math_renderer %r。" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 指向的 %r 不存在" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 入口 %r 置于输出目录内" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 指向的 %r 不存在" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 入口 %r 置于输出目录内" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "logo文件 %r 不存在" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "网站图标 文件 %r 不存在" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s 文档" @@ -1221,7 +1222,7 @@ msgstr "工作编号应为正值" #: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit <https://www.sphinx-doc.org/>." -msgstr "" +msgstr "要了解更多,请访问 <https://www.sphinx-doc.org/>。" #: sphinx/cmd/build.py:107 msgid "" @@ -1902,7 +1903,7 @@ msgstr "参数" #: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" -msgstr "" +msgstr "返回值" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 @@ -2745,42 +2746,57 @@ msgstr "内联 LaTeX %r:%s" msgid "Permalink to this equation" msgstr "公式的永久链接" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx库存已被移动: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "从中加载intersphinx库存 %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "遇到了一些库存问题,但他们有其他工作方式:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "访问对象清单时报错:" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(在 %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "(在 %s)" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "跨 Sphinx 标识 %r 不是字符串,已忽略" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "无法读取intersphinx_mapping[%s],忽略:%r" @@ -2928,12 +2944,12 @@ msgstr "基类:%s" #: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" -msgstr "" +msgstr "%s的别名" #: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" -msgstr "" +msgstr "TypeVar(%s) 的别名" #: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format @@ -3104,7 +3120,7 @@ msgstr "其他参数" #: sphinx/ext/napoleon/docstring.py:763 msgid "Receives" -msgstr "" +msgstr "接收" #: sphinx/ext/napoleon/docstring.py:767 msgid "References" @@ -3319,7 +3335,7 @@ msgstr "最后更新于 %(last_updated)s." msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " "%(sphinx_version)s." -msgstr "" +msgstr "由 <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s创建。" #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -3505,7 +3521,7 @@ msgstr "找到了多个目标 'any' 交叉引用的目标不唯一 %r: 可能是 #: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" -msgstr "" +msgstr "%s:%s 引用目标未找到: %s" #: sphinx/transforms/post_transforms/__init__.py:209 #, python-format @@ -3547,12 +3563,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "未知节点类型:%r" @@ -3570,7 +3586,7 @@ msgstr "写入时发生错误:%s,%s" #: sphinx/util/i18n.py:98 #, python-format msgid "locale_dir %s does not exists" -msgstr "" +msgstr "locale_dir %s不存在 " #: sphinx/util/i18n.py:192 #, python-format diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo Binary files differindex f7b741249..91ce3e638 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 7737d53ff..0267a9e92 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo Binary files differindex 405db0540..40c807f63 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index eef79d9f0..e0c774ca2 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" "MIME-Version: 1.0\n" @@ -628,7 +628,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -638,7 +638,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -932,144 +932,144 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "" @@ -2729,42 +2729,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -3531,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo Binary files differindex 4708c49ee..8a9b79214 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index da7356727..70f3fc0c5 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-16 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -636,7 +636,7 @@ msgstr "正在準備文件" msgid "duplicated ToC entry found: %s" msgstr "找到了重複的 ToC 項目: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:730 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:731 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "正在複製圖片..." @@ -646,7 +646,7 @@ msgstr "正在複製圖片..." msgid "cannot read image file %r: copying it instead" msgstr "無法讀取圖片檔 %r: 正在複製它做為替代" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:738 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:739 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -771,7 +771,7 @@ msgstr "conf 值 \"epub_identifier\" 在 EPUB3 不應該為空" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "conf 值 \"version\" 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1122 #, python-format msgid "invalid css_file: %r, ignored" msgstr "無效的 css_file: %r, 已略過" @@ -894,7 +894,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1075 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" @@ -940,144 +940,144 @@ msgstr "總索引" msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:551 +#: sphinx/builders/html/__init__.py:552 msgid "next" msgstr "下一頁" -#: sphinx/builders/html/__init__.py:560 +#: sphinx/builders/html/__init__.py:561 msgid "previous" msgstr "上一頁" -#: sphinx/builders/html/__init__.py:654 +#: sphinx/builders/html/__init__.py:655 msgid "generating indices" msgstr "正在產生索引" -#: sphinx/builders/html/__init__.py:669 +#: sphinx/builders/html/__init__.py:670 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:748 +#: sphinx/builders/html/__init__.py:749 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:756 +#: sphinx/builders/html/__init__.py:757 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 +#: sphinx/builders/html/__init__.py:789 sphinx/builders/html/__init__.py:801 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:822 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:838 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:843 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:849 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:855 +#: sphinx/builders/html/__init__.py:856 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:903 +#: sphinx/builders/html/__init__.py:904 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:964 +#: sphinx/builders/html/__init__.py:965 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1057 +#: sphinx/builders/html/__init__.py:1058 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1062 +#: sphinx/builders/html/__init__.py:1063 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1091 +#: sphinx/builders/html/__init__.py:1092 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1096 +#: sphinx/builders/html/__init__.py:1097 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1138 +#: sphinx/builders/html/__init__.py:1139 #, python-format msgid "invalid js_file: %r, ignored" msgstr "無效的 js_file: %r, 已略過" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1226 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1228 +#: sphinx/builders/html/__init__.py:1229 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1236 +#: sphinx/builders/html/__init__.py:1237 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1254 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1263 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1271 +#: sphinx/builders/html/__init__.py:1272 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1292 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1317 +#: sphinx/builders/html/__init__.py:1318 #, python-format msgid "%s %s documentation" msgstr "%s %s 說明文件" @@ -2737,42 +2737,57 @@ msgstr "" msgid "Permalink to this equation" msgstr "本公式的永久連結" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:179 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:210 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:224 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:230 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:270 +#: sphinx/ext/intersphinx.py:275 #, python-format msgid "(in %s v%s)" msgstr "(於 %s v%s)" -#: sphinx/ext/intersphinx.py:272 +#: sphinx/ext/intersphinx.py:277 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:476 +#: sphinx/ext/intersphinx.py:501 +#, python-format +msgid "inventory for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:507 +#, python-format +msgid "role for external cross-reference not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:594 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:619 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx identifier %r 不是字串。已略過" -#: sphinx/ext/intersphinx.py:489 +#: sphinx/ext/intersphinx.py:632 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "無法讀取 intersphinx_mapping[%s], 已略過: %r" @@ -3539,12 +3554,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:213 +#: sphinx/util/docutils.py:233 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "未知的指令或角色名稱: %s:%s" -#: sphinx/util/docutils.py:500 +#: sphinx/util/docutils.py:523 #, python-format msgid "unknown node type: %r" msgstr "未知的節點型別: %r" diff --git a/sphinx/templates/quickstart/make.bat.new_t b/sphinx/templates/quickstart/make.bat.new_t index ab30130c9..c89237ba2 100644 --- a/sphinx/templates/quickstart/make.bat.new_t +++ b/sphinx/templates/quickstart/make.bat.new_t @@ -10,8 +10,6 @@ if "%SPHINXBUILD%" == "" ( set SOURCEDIR={{ rsrcdir }} set BUILDDIR={{ rbuilddir }} -if "%1" == "" goto help - %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. @@ -25,6 +23,8 @@ if errorlevel 9009 ( exit /b 1 ) +if "%1" == "" goto help + %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% goto end diff --git a/sphinx/util/typing.py b/sphinx/util/typing.py index d9b63e046..5cd0c230e 100644 --- a/sphinx/util/typing.py +++ b/sphinx/util/typing.py @@ -116,6 +116,7 @@ def restify(cls: Optional[Type], mode: str = 'fully-qualified-except-typing') -> 'smart' Show the name of the annotation. """ + from sphinx.ext.autodoc.mock import ismock, ismockmodule # lazy loading from sphinx.util import inspect # lazy loading if mode == 'smart': @@ -130,6 +131,10 @@ def restify(cls: Optional[Type], mode: str = 'fully-qualified-except-typing') -> return '...' elif isinstance(cls, str): return cls + elif ismockmodule(cls): + return ':py:class:`%s%s`' % (modprefix, cls.__name__) + elif ismock(cls): + return ':py:class:`%s%s.%s`' % (modprefix, cls.__module__, cls.__name__) elif cls in INVALID_BUILTIN_CLASSES: return ':py:class:`%s%s`' % (modprefix, INVALID_BUILTIN_CLASSES[cls]) elif inspect.isNewType(cls): @@ -335,6 +340,7 @@ def stringify(annotation: Any, mode: str = 'fully-qualified-except-typing') -> s 'fully-qualified' Show the module name and qualified name of the annotation. """ + from sphinx.ext.autodoc.mock import ismock, ismockmodule # lazy loading from sphinx.util import inspect # lazy loading if mode == 'smart': @@ -364,6 +370,10 @@ def stringify(annotation: Any, mode: str = 'fully-qualified-except-typing') -> s return repr(annotation) elif annotation is NoneType: return 'None' + elif ismockmodule(annotation): + return modprefix + annotation.__name__ + elif ismock(annotation): + return modprefix + '%s.%s' % (annotation.__module__, annotation.__name__) elif annotation in INVALID_BUILTIN_CLASSES: return modprefix + INVALID_BUILTIN_CLASSES[annotation] elif str(annotation).startswith('typing.Annotated'): # for py310+ diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index b9c4b9e24..95fa6c7e6 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -14,7 +14,7 @@ import posixpath import re import urllib.parse import warnings -from typing import TYPE_CHECKING, Iterable, Tuple, cast +from typing import TYPE_CHECKING, Iterable, Optional, Tuple, cast from docutils import nodes from docutils.nodes import Element, Node, Text @@ -285,6 +285,9 @@ class HTMLTranslator(SphinxTranslator, BaseTranslator): node.insert(0, nodes.title(name, admonitionlabels[name])) self.set_first_last(node) + def depart_admonition(self, node: Optional[Element] = None) -> None: + self.body.append('</div>\n') + def visit_seealso(self, node: Element) -> None: self.visit_admonition(node, 'seealso') diff --git a/sphinx/writers/html5.py b/sphinx/writers/html5.py index b08726fca..71c3062c8 100644 --- a/sphinx/writers/html5.py +++ b/sphinx/writers/html5.py @@ -13,7 +13,7 @@ import posixpath import re import urllib.parse import warnings -from typing import TYPE_CHECKING, Iterable, Set, Tuple, cast +from typing import TYPE_CHECKING, Iterable, Optional, Set, Tuple, cast from docutils import nodes from docutils.nodes import Element, Node, Text @@ -259,6 +259,9 @@ class HTML5Translator(SphinxTranslator, BaseTranslator): if name: node.insert(0, nodes.title(name, admonitionlabels[name])) + def depart_admonition(self, node: Optional[Element] = None) -> None: + self.body.append('</div>\n') + def visit_seealso(self, node: Element) -> None: self.visit_admonition(node, 'seealso') diff --git a/tests/test_ext_extlinks.py b/tests/test_ext_extlinks.py index 2be9789f0..9b0e96cb0 100644 --- a/tests/test_ext_extlinks.py +++ b/tests/test_ext_extlinks.py @@ -5,14 +5,15 @@ import pytest def test_replaceable_uris_emit_extlinks_warnings(app, warning): app.build() warning_output = warning.getvalue() + # there should be exactly three warnings for replaceable URLs message = ( - "WARNING: hardcoded link 'https://github.com/sphinx-doc/sphinx/issues/1' " - "could be replaced by an extlink (try using ':issue:`1`' instead)" + "index.rst:%d: WARNING: hardcoded link 'https://github.com/sphinx-doc/sphinx/issues/1' " + "could be replaced by an extlink (try using '%s' instead)" ) - assert f"index.rst:11: {message}" in warning_output - assert f"index.rst:13: {message}" in warning_output - assert f"index.rst:15: {message}" in warning_output + assert message % (11, ":issue:`1`") in warning_output + assert message % (13, ":issue:`inline replaceable link <1>`") in warning_output + assert message % (15, ":issue:`replaceable link <1>`") in warning_output @pytest.mark.sphinx('html', testroot='ext-extlinks-hardcoded-urls-multiple-replacements') @@ -21,16 +22,16 @@ def test_all_replacements_suggested_if_multiple_replacements_possible(app, warni warning_output = warning.getvalue() # there should be six warnings for replaceable URLs, three pairs per link message = ( - "WARNING: hardcoded link 'https://github.com/octocat' " - "could be replaced by an extlink (try using ':user:`octocat`' instead)" + "index.rst:%d: WARNING: hardcoded link 'https://github.com/octocat' " + "could be replaced by an extlink (try using '%s' instead)" ) - assert f"index.rst:14: {message}" in warning_output - assert f"index.rst:16: {message}" in warning_output - assert f"index.rst:18: {message}" in warning_output + assert message % (14, ":user:`octocat`") in warning_output + assert message % (16, ":user:`inline replaceable link <octocat>`") in warning_output + assert message % (18, ":user:`replaceable link <octocat>`") in warning_output message = ( - "WARNING: hardcoded link 'https://github.com/octocat' " - "could be replaced by an extlink (try using ':repo:`octocat`' instead)" + "index.rst:%d: WARNING: hardcoded link 'https://github.com/octocat' " + "could be replaced by an extlink (try using '%s' instead)" ) - assert f"index.rst:14: {message}" in warning_output - assert f"index.rst:16: {message}" in warning_output - assert f"index.rst:18: {message}" in warning_output + assert message % (14, ":repo:`octocat`") in warning_output + assert message % (16, ":repo:`inline replaceable link <octocat>`") in warning_output + assert message % (18, ":repo:`replaceable link <octocat>`") in warning_output diff --git a/tests/test_util_typing.py b/tests/test_util_typing.py index c061fa085..7d81fee5d 100644 --- a/tests/test_util_typing.py +++ b/tests/test_util_typing.py @@ -213,6 +213,7 @@ def test_restify_broken_type_hints(): def test_restify_mock(): with mock(['unknown']): import unknown + assert restify(unknown) == ':py:class:`unknown`' assert restify(unknown.secret.Class) == ':py:class:`unknown.secret.Class`' assert restify(unknown.secret.Class, "smart") == ':py:class:`~unknown.secret.Class`' @@ -480,5 +481,6 @@ def test_stringify_broken_type_hints(): def test_stringify_mock(): with mock(['unknown']): import unknown + assert stringify(unknown) == 'unknown' assert stringify(unknown.secret.Class) == 'unknown.secret.Class' assert stringify(unknown.secret.Class, "smart") == 'unknown.secret.Class' |