diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml index 8ed617c76cd..71c9d32cc0e 100644 --- a/.github/workflows/transifex.yml +++ b/.github/workflows/transifex.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v2 with: - ref: 4.x + ref: 5.x - name: Set up Python uses: actions/setup-python@v2 with: @@ -34,7 +34,7 @@ jobs: steps: - uses: actions/checkout@v2 with: - ref: 4.x + ref: 5.x - name: Set up Python uses: actions/setup-python@v2 with: diff --git a/CHANGES b/CHANGES index 64cf4333d68..b341321de4a 100644 --- a/CHANGES +++ b/CHANGES @@ -69,6 +69,8 @@ Bugs fixed functions are rendered as a string literal * #10280: autodoc: :confval:`autodoc_docstring_signature` unexpectedly generates return value typehint for constructors if docstring has multiple signatures +* #10214: html: invalid language tag was generated if :confval:`language` + contains a country code (ex. zh_CN) * #10236: html search: objects are duplicated in search result * #9962: texinfo: Deprecation message for ``@definfoenclose`` command on bulding texinfo document diff --git a/package-lock.json b/package-lock.json index fb2096035ec..42f65c7a148 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2195,9 +2195,9 @@ } }, "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", "dev": true }, "mkdirp": { diff --git a/sphinx/builders/html/__init__.py b/sphinx/builders/html/__init__.py index 93a5845a3b1..f713fb2b521 100644 --- a/sphinx/builders/html/__init__.py +++ b/sphinx/builders/html/__init__.py @@ -7,7 +7,7 @@ import sys from datetime import datetime from os import path -from typing import IO, Any, Dict, Iterable, Iterator, List, Set, Tuple, Type +from typing import IO, Any, Dict, Iterable, Iterator, List, Optional, Set, Tuple, Type from urllib.parse import quote from docutils import nodes @@ -68,6 +68,17 @@ def get_stable_hash(obj: Any) -> str: return md5(str(obj).encode()).hexdigest() +def convert_locale_to_language_tag(locale: Optional[str]) -> Optional[str]: + """Convert a locale string to a language tag (ex. en_US -> en-US). + + refs: BCP 47 (:rfc:`5646`) + """ + if locale: + return locale.replace('_', '-') + else: + return None + + class Stylesheet(str): """A metadata of stylesheet. @@ -510,7 +521,7 @@ def prepare_writing(self, docnames: Set[str]) -> None: 'file_suffix': self.out_suffix, 'link_suffix': self.link_suffix, 'script_files': self.script_files, - 'language': self.config.language, + 'language': convert_locale_to_language_tag(self.config.language), 'css_files': self.css_files, 'sphinx_version': __display_version__, 'sphinx_version_tuple': sphinx_version, diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 3f1bc1ce184..1284abfe211 100644 Binary files a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 4ec75fa1c16..653b28f2b59 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Abdullah ahmed , 2020\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -808,21 +808,21 @@ msgstr "" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -3360,12 +3360,12 @@ msgid "search" msgstr "بحث" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "نتائج البحث" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3431,12 +3431,12 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr "" @@ -3548,12 +3548,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.js b/sphinx/locale/bg/LC_MESSAGES/sphinx.js index 92a000c237a..bca7adf6cd4 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index c403bc816ba..423731acfad 100644 Binary files a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index b2502637d00..2d97fba0e95 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -65,76 +65,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -628,8 +628,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -638,8 +638,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -815,7 +815,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -859,16 +859,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -902,238 +902,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1880,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1889,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1907,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1985,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2002,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2017,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2031,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2075,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2087,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2208,112 +2208,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2394,17 +2394,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2614,12 +2614,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2999,12 +3013,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3204,7 +3218,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3285,35 +3299,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3358,12 +3372,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3405,46 +3419,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3466,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3526,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3556,22 +3558,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3593,6 +3595,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3607,6 +3614,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3627,40 +3639,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.js b/sphinx/locale/bn/LC_MESSAGES/sphinx.js index c62fb9e898f..04b69256443 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "\u09aa\u09b0\u09ac\u09b0\u09cd\u09a4\u09c0 \u099f\u09aa\u09bf\u0995", "Other changes": "\u0985\u09a8\u09cd\u09af\u09be\u09a8\u09cd\u09af \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Overview": "\u09ad\u09c1\u09ae\u09bf\u0995\u09be", - "Permalink to this definition": "\u098f\u0987 \u09b8\u0982\u099c\u09cd\u099e\u09be\u09b0 \u09aa\u09be\u09b0\u09cd\u09ae\u09be\u09b2\u09bf\u0999\u09cd\u0995", - "Permalink to this headline": "\u098f\u0987 \u09b6\u09bf\u09b0\u09c7\u09be\u09a8\u09be\u09ae\u09c7\u09b0 \u09aa\u09be\u09b0\u09cd\u09ae\u09be\u09b2\u09bf\u0999\u09cd\u0995", "Please activate JavaScript to enable the search\n functionality.": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09be\u09b0 \u099c\u09a8\u09cd\u09af \u0985\u09a8\u09c1\u0997\u09cd\u09b0\u09b9\u09aa\u09c2\u09b0\u09cd\u09ac\u0995 \u099c\u09be\u09ad\u09be\u09b8\u09cd\u0995\u09cd\u09b0\u09bf\u09aa\u09cd\u099f \n \u09b8\u0995\u09cd\u09b0\u09bf\u09df \u0995\u09b0\u09c1\u09a8\u0964", "Preparing search...": "", "Previous topic": "\u09aa\u09c2\u09b0\u09cd\u09ac\u09ac\u09b0\u09cd\u09a4\u09c0 \u099f\u09aa\u09bf\u0995", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8", "Search Page": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u09aa\u09be\u09a4\u09be", "Search Results": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\u09c7\u09b0 \u09ab\u09b2\u09be\u09ab\u09b2", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "%(docstitle)s \u098f\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 \u0996\u09c1\u0981\u099c\u09c1\u09a8", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index d0d47c948f2..5488e082237 100644 Binary files a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 85a1942b2b4..91adf000d58 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -66,76 +66,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -629,8 +629,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -639,8 +639,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -860,16 +860,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "(-" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -903,238 +903,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "সাধারণ ইনডেক্স" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "ইনডেক্স" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "পরবর্তী" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "পূর্ববর্তী" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "ইনডেক্স" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "রিলিজ" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1881,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "প্যারামিটার" @@ -1890,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "রিটার্নস" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "রিটার্ন টাইপ" @@ -1908,7 +1908,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "ফাংশন" @@ -1986,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "ক্লাস" @@ -2003,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" @@ -2018,7 +2018,7 @@ msgstr "%s() (ক্লাসে)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" @@ -2032,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (মডিউল)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "মেথড" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "এ্যট্রিবিউট" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "মডিউল" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2076,7 +2076,7 @@ msgstr "অপারেটর" msgid "object" msgstr "অবজেক্ট" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "এক্সেপশন" @@ -2088,92 +2088,92 @@ msgstr "স্ট্যাটমেন্ট" msgid "built-in function" msgstr "বিল্ট-ইন ফাংশন" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "রেইজেস" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2209,112 +2209,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "শব্দকোষ" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "ব্যকরণ টোকেন" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "প্রোগ্রাম অপশন" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "মডিউল ইনডেক্স" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "অনুসন্ধান পাতা" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2395,17 +2395,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2615,12 +2615,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3000,12 +3014,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3205,7 +3219,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "অনুসন্ধান" @@ -3286,35 +3300,35 @@ msgstr "খুব বড় হতে পারে" msgid "Navigation" msgstr "নেভিগেশন" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s এর মধ্যে খুঁজুন" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "এই ডকুমেন্ট সম্পর্কে" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "কপিরাইট" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "%(last_updated)s সর্বশেষ পরিবর্তন করা হয়েছে।" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3359,12 +3373,12 @@ msgid "search" msgstr "খুঁজুন" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "অনুসন্ধানের ফলাফল" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3406,46 +3420,34 @@ msgstr "C API পরিবর্তন" msgid "Other changes" msgstr "অন্যান্য পরিবর্তন" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "এই শিরোনামের পার্মালিঙ্ক" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "এই সংজ্ঞার পার্মালিঙ্ক" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "অনুসন্ধানের ম্যাচগুলো লুকান" -#: sphinx/themes/basic/static/searchtools.js:136 -msgid "Searching" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 -msgid "Preparing search..." +#: sphinx/themes/basic/static/searchtools.js:213 +msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." +#: sphinx/themes/basic/static/searchtools.js:226 +msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3467,25 +3469,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3527,16 +3529,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3557,22 +3559,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3594,6 +3596,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "এই সংজ্ঞার পার্মালিঙ্ক" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3608,6 +3615,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3628,40 +3640,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "পাদটীকা" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.js b/sphinx/locale/ca/LC_MESSAGES/sphinx.js index 769dce65e26..295d0773838 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "Tema seg\u00fcent", "Other changes": "Altres canvis", "Overview": "Resum", - "Permalink to this definition": "Link permanent a aquesta definici\u00f3", - "Permalink to this headline": "Link permanent a aquest t\u00edtol", "Please activate JavaScript to enable the search\n functionality.": "Activa JavaScript per utilitzar la funcionalitat\nde cerca.", "Preparing search...": "", "Previous topic": "Tema anterior", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "Cerca", "Search Page": "P\u00e0gina de Cerca", "Search Results": "Resultats de la Cerca", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "Cerca dins de %(docstitle)s", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 76e091d3a92..9b14b021003 100644 Binary files a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index ea7d7bf1cb2..d10580a9a76 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -66,76 +66,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -629,8 +629,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -639,8 +639,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -860,16 +860,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (a " @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -903,238 +903,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índex General" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "índex" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "següent" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "%s %s documentació" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Índex" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "Versió" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1881,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Paràmetres" @@ -1890,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Retorna" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Tipus de retorn" @@ -1908,7 +1908,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "funció" @@ -1986,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "class" @@ -2003,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funció interna)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (mètode %s)" @@ -2018,7 +2018,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2032,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (mòdul)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "mòdul" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2076,7 +2076,7 @@ msgstr "operador" msgid "object" msgstr "objecte" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "excepció" @@ -2088,92 +2088,92 @@ msgstr "sentència" msgid "built-in function" msgstr "funció interna" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "Llença" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (al mòdul %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (al mòdul %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable interna)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (class a %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (mètode estàtic %s)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "mòduls" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Obsolet" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "mètode estàtic" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (obsolet)" @@ -2209,112 +2209,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "variable d'entorn; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "variable d'entorn" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "Índex de Mòduls" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pàgina de Cerca" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2395,17 +2395,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2615,12 +2615,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3000,12 +3014,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3205,7 +3219,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Cerca" @@ -3286,35 +3300,35 @@ msgstr "pot ser gegant" msgid "Navigation" msgstr "Navegació" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "Cerca dins de %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "Quant a aquests documents" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Última actualització el %(last_updated)s." -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3359,12 +3373,12 @@ msgid "search" msgstr "cerca" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "Resultats de la Cerca" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3406,46 +3420,34 @@ msgstr "Canvis a la API de C" msgid "Other changes" msgstr "Altres canvis" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "Link permanent a aquest títol" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "Link permanent a aquesta definició" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "Oculta Resultats de Cerca" -#: sphinx/themes/basic/static/searchtools.js:136 -msgid "Searching" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 -msgid "Preparing search..." +#: sphinx/themes/basic/static/searchtools.js:213 +msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." +#: sphinx/themes/basic/static/searchtools.js:226 +msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3467,25 +3469,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3527,16 +3529,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3557,22 +3559,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3594,6 +3596,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "Link permanent a aquesta definició" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3608,6 +3615,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3628,40 +3640,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.js b/sphinx/locale/cak/LC_MESSAGES/sphinx.js index c481730de3d..7cf30b26645 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 3d7b8dd2005..c061ef39fea 100644 Binary files a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index cc5ac91c369..e0d9908d5e5 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -66,76 +66,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "xk'isïk" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "sachoj: %s" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -629,8 +629,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -639,8 +639,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "tajin nutz'ib'aj" @@ -860,16 +860,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "(chupam" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -903,238 +903,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Konojel cholwuj" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "cholwuj" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "jun chïk" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "chi rij kan" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Cholwuj" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1881,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Jalajöj" @@ -1890,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1908,7 +1908,7 @@ msgid "variable" msgstr "retal jalöj" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1986,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "Ruwäch" @@ -2003,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2018,7 +2018,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2032,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2076,7 +2076,7 @@ msgstr "" msgid "object" msgstr "wachinäq" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2088,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "Retal jalöj" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2209,112 +2209,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "wuj" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2395,17 +2395,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2615,12 +2615,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3000,12 +3014,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3205,7 +3219,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3286,35 +3300,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3359,12 +3373,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3406,46 +3420,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr ", pa" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3467,25 +3469,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3527,16 +3529,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3557,22 +3559,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "rusachoj rusik'inïk: %s, %s" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "rusachoj rutz'ib'axïk: %s, %s" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3594,6 +3596,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3608,6 +3615,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3628,40 +3640,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.js b/sphinx/locale/cs/LC_MESSAGES/sphinx.js index 983f452fcdc..eb7ccf0a7b2 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "Dal\u0161\u00ed t\u00e9ma", "Other changes": "Ostatn\u00ed zm\u011bny", "Overview": "P\u0159ehled", - "Permalink to this definition": "Trval\u00fd odkaz na tuto definici", - "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Please activate JavaScript to enable the search\n functionality.": "Pro podporu vyhled\u00e1v\u00e1n\u00ed aktivujte JavaScript.", "Preparing search...": "Vyhled\u00e1v\u00e1n\u00ed se p\u0159ipravuje...", "Previous topic": "P\u0159echoz\u00ed t\u00e9ma", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "Vyhled\u00e1v\u00e1n\u00ed", "Search Page": "Vyhled\u00e1vac\u00ed str\u00e1nka", "Search Results": "V\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", - "Search finished, found %s page(s) matching the search query.": "Vyhled\u00e1v\u00e1n\u00ed dokon\u010deno, str\u00e1nky odpov\u00eddaj\u00edc\u00ed hledan\u00e9mu v\u00fdrazu: %s.", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "Prohledat %(docstitle)s", "Searching": "Prob\u00edh\u00e1 vyhled\u00e1n\u00ed", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index b6ef5d0be51..087c1eeb996 100644 Binary files a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 72f171a0321..087b03fabfb 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vilibald W. , 2014-2015\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -67,76 +67,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -630,8 +630,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -640,8 +640,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -788,22 +788,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -817,7 +817,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -861,16 +861,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (v " @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -904,238 +904,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Obecný rejstřík" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "rejstřík" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "další" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "předchozí" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "Dokumentace pro %s %s" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Rejstřík" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "Vydání" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Parametry" @@ -1891,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Vrací" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Typ návratové hodnoty" @@ -1909,7 +1909,7 @@ msgid "variable" msgstr "proměnná" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "funkce" @@ -1987,7 +1987,7 @@ msgid "Throws" msgstr "Vyvolá" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "třída" @@ -2004,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -2019,7 +2019,7 @@ msgstr "%s() (třída)" msgid "%s (global variable or constant)" msgstr "%s (globální proměnná nebo konstanta)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2033,20 +2033,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "modul" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2077,7 +2077,7 @@ msgstr "operátor" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "výjimka" @@ -2089,92 +2089,92 @@ msgstr "příkaz" msgid "built-in function" msgstr "vestavěná funkce" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "Proměnné" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (vestavěná proměnná)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (vestavěná třída)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (třída v %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (třídní metoda %s)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Rejstřík modulů Pythonu" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "třídní metoda" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (zastaralé)" @@ -2210,112 +2210,112 @@ msgstr "role" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "proměnná prostředí; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "termín v glosáři" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "token gramatiky" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "referenční návěstí" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "proměnná prostředí" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "volba programu" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "Rejstřík modulů" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Vyhledávací stránka" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2396,17 +2396,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2616,12 +2616,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3001,12 +3015,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3206,7 +3220,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Vyhledávání" @@ -3287,35 +3301,35 @@ msgstr "může být obrovský" msgid "Navigation" msgstr "Navigace" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "Prohledat %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "O těchto dokumentech" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "Veškerá práva vyhrazena" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Aktualizováno dne %(last_updated)s." -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3360,12 +3374,12 @@ msgid "search" msgstr "hledat" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "Výsledky vyhledávání" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3407,48 +3421,36 @@ msgstr "Změny API" msgid "Other changes" msgstr "Ostatní změny" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "Trvalý odkaz na tento nadpis" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "Trvalý odkaz na tuto definici" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "Skrýt výsledky vyhledávání" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "Probíhá vyhledání" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "Vyhledávání se připravuje..." -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "Vyhledávání dokončeno, stránky odpovídající hledanému výrazu: %s." - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr ", v " -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" -msgstr "Rozbalit boční lištu" - -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" msgstr "Sbalit boční lištu" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" +msgstr "Rozbalit boční lištu" + #: sphinx/themes/haiku/layout.html:24 msgid "Contents" msgstr "Obsah" @@ -3468,25 +3470,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3528,16 +3530,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3558,22 +3560,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3595,6 +3597,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "Trvalý odkaz na tuto definici" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3609,6 +3616,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "Permalink k této tabulce" @@ -3629,40 +3641,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "Poznámky pod čarou" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index b46026e3131..0c71871e38d 100644 Binary files a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index b2e7d377d14..680c290a88c 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Geraint Palmer , 2016\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -808,21 +808,21 @@ msgstr "" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -3360,12 +3360,12 @@ msgid "search" msgstr "chwilio" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "Canlyniadau chwilio" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3431,12 +3431,12 @@ msgstr "Yn chwilio" msgid "Preparing search..." msgstr "Paratoi chwilio..." -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Chwiliad wedi gorffen, wedi ffeindio %s tudalen(nau) yn cyfateb a'r ymholiad chwilio." -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr ", yn " @@ -3548,12 +3548,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 812f5ce1680..5b78abdcd40 100644 Binary files a/sphinx/locale/da/LC_MESSAGES/sphinx.mo and b/sphinx/locale/da/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 219cc8cf2cc..9ed0e8292b9 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -6,14 +6,14 @@ # askhl , 2010-2011 # Jakob Lykke Andersen , 2014,2016 # Joe Hansen , 2016,2019 -# Komiya Takeshi , 2021 +# Takeshi KOMIYA , 2021 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Komiya Takeshi , 2021\n" +"Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -810,21 +810,21 @@ msgstr "" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -3362,12 +3362,12 @@ msgid "search" msgstr "søg" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "Søgeresultater" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3433,12 +3433,12 @@ msgstr "Søger" msgid "Preparing search..." msgstr "Forbereder søgning..." -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Søgning færdig, fandt %s sider der matcher søgeforespørgslen." -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr ", i" @@ -3550,12 +3550,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.js b/sphinx/locale/el/LC_MESSAGES/sphinx.js index 8568491833a..deec0461e3a 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03b8\u03ad\u03bc\u03b1", "Other changes": "\u0386\u03bb\u03bb\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2", "Overview": "\u0395\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", - "Permalink to this definition": "\u039c\u03cc\u03bd\u03b9\u03bc\u03bf\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc", - "Permalink to this headline": "\u039c\u03cc\u03bd\u03b9\u03bc\u03bf\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7\u03bd \u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", "Please activate JavaScript to enable the search\n functionality.": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce, \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7 JavaScript \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\n \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2.", "Preparing search...": "\u03a0\u03c1\u03bf\u03b5\u03c4\u03bf\u03b9\u03bc\u03b1\u03c3\u03af\u03b1 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2...", "Previous topic": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03b8\u03ad\u03bc\u03b1", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "Search Page": "\u03a3\u03b5\u03bb\u03af\u03b4\u03b1 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2", "Search Results": "\u0391\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03c3\u03bc\u03b1\u03c4\u03b1 \u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2", - "Search finished, found %s page(s) matching the search query.": "\u0397 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5, \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5/\u03b1\u03bd %s \u03c3\u03b5\u03bb\u03af\u03b4\u03b1/\u03b5\u03c2 \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03bf\u03c5\u03c2 \u03cc\u03c1\u03bf\u03c5\u03c2 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2.", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf %(docstitle)s", "Searching": "\u0395\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9 \u03b7 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 9a8efbd0cd6..86372188a3d 100644 Binary files a/sphinx/locale/el/LC_MESSAGES/sphinx.mo and b/sphinx/locale/el/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 0a9da0bebf2..479c2e66c6b 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -4,15 +4,15 @@ # # Translators: # Stelios Vitalis , 2015 -# Komiya Takeshi , 2021 +# Takeshi KOMIYA , 2021 # tzoumakers tzoumakers , 2019 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Komiya Takeshi , 2021\n" +"Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,76 +68,76 @@ msgstr "η 'παραμετροποίηση' σύμφωνα με τον τρέχ msgid "loading translations [%s]... " msgstr "φόρτωση μεταφράσεων [%s]..." -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "ολοκλήρωση" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "δεν είναι διαθέσιμο για εσωτερικά μηνύματα" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "φόρτωση πακτωμένου περιβάλλοντος" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "αποτυχία: %s" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "Δεν επιλέχθηκε μεταγλωττιστής, θα χρησιμοποιηθεί ο προεπιλεγμένος: html" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "επιτυχία" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "ολοκλήρωση με προβλήματα" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "μεταγλώττιση %s, %s προειδοποίηση" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "μεταγλώττιση %s." -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "η κλάση κόμβου %r έχει ήδη καταχωρηθεί, οι επισκέπτες της θα υπερσκελιστούν" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "η οδηγία %r έει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ο ρόλος %r έχει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,12 +145,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε από το δημιουργό της επέκτασης να το ελέγχει και να το κάνει σαφές" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -158,12 +158,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε το δημιουργό της επέκτασης να το ελέγξει και να το κάνει σαφές" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "εκτέλεση σειριακής %s" @@ -631,8 +631,8 @@ msgstr "προετοιμασία κειμένων" msgid "duplicated ToC entry found: %s" msgstr "βρέθηκε διπλότυπη εγγραφή ToC: %s" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "αντιγραφή εικόνων..." @@ -641,8 +641,8 @@ msgstr "αντιγραφή εικόνων..." msgid "cannot read image file %r: copying it instead" msgstr "δεν είναι δυνατή η ανάγωνση αρχείου εικόνας %r: αντί αυτού θα αντιγραφεί" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "δεν είναι δυνατή η αντιγραφή αρχείου εικόνας %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:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ανέγκυρο css_file: %r, θα αγνοηθεί" @@ -789,41 +789,41 @@ msgstr "ανάγνωση προτύπων..." msgid "writing message catalogs... " msgstr "εγγραφή καταλόγων μηνύματος..." -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, 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:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "λανθασμένος σύνδεσμος: %s (%s)" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "Δεν βρέθηκε το anchor '%s'" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Οι σελίδες manual βρίσκονται σε %(outdir)s." -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "δεν βρέθηκε τιμή παραμετροποίησης \"man_pages\"; δεν θα καταγραφούν manual pages" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "εγγραφή" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "η τιμή παραμετροποίησης \"man_pages\" κάνει αναφορά το άγνωστο κείμενο %s" @@ -862,16 +862,16 @@ msgstr "δεν βρέθηκε τιμή \"texinfo_documents\": δεν θα γίν msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "η τιμή παραμετροποίησης \"texninfo_documents\" αναφέρεται σε άγνωστο κείμενο %s" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "επεξεργασία %s" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "επίλυση αναφορών..." -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (σε " @@ -889,7 +889,7 @@ msgstr "σφάλμα κατά την εγγραφή του αρχείου Makefi msgid "The text files are in %(outdir)s." msgstr "Τα αρχεία κειένου βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -905,238 +905,238 @@ msgstr "Τα αρχεία XML βρίσκονται σε %(outdir)s." msgid "The pseudo-XML files are in %(outdir)s." msgstr "Τα αρχεία XML βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "το αρχείο πληροφοριών μεταγλώττισης είναι κατεστραμμένο: %r" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Οι σελίδες HTML βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "Αδυναμία ανάγνωσης αρχείου πληροφοριών μεταγλώττισης: %r" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %B %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Κεντρικό Ευρετήριοο" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "ευρετήριο" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "επόμενο" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "προηγούμενο" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "αντιγραφή αρχείων μεταφόρτωσης..." -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "δεν είναι δυνατή η αντιγραφή του μεταφορτωμένου αρχείου %r: %s" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "δεν είναι δυνατή η αντιγραφή στατικού αρχείου %r" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "δεν είναι δυνατή η αντιγραφή του επιπλέον αρχείου %r" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "Αδυναμία εγγραφής του αρχείου πληροφοριών μεταγλώττισης: %r" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, 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:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ένα σφάλμα συνέβη κατά τη σύνθεση της σελίδας %s.\n\nΑιτία %r " -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "ανέγκυρο js_file: %r, θα αγνοηθεί" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Πολλά math_renderers έχουν καταγραφεί. Αλλά δεν έχει επιλεγεί κανένα math_renderer." -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Δόθηκε άγνωστο math_renderer %r." -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "Η εγγραφή html_extra_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "η εγγραφή html_static_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "το αρχείο logo %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "το αρχείο favicon %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "Τεκμηρίωση του %s - %s" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Τα αρχεία LaTeX βρίσκονται σε %(outdir)s." -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nΕκτελέστε 'make' σε αυτό τον κατάλογο για να εκτελέσετε αυτά μέσω του (pdf)latex\n(χρησιμοποιήστε το 'make latexpdf' εδώ για να το κάνετε αυτόματα)." -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "δεν βρέθηκε τιμή παραμετροποίησης \"latex_documents\": δεν θα πραγματοποιηθεί εγγραφή για κανένα κείμενο" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "η τιμή παραμετροποίησης \"latex_documents\" κάνει αναφορά το άγνωστο κείμενο %s" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Ευρετήριο" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "Δημοσίευση" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "καμία γνωστή επιλογή Babel για τη γλώσσα %r" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "αντιγραφή αρχείων υποστήριξης TeX" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "αντιγραφή αρχείων υποστήριξης TeX..." -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "αντιγραφή επιπρόσθετων αρχείων" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Παράμετροι" @@ -1892,12 +1892,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Επιστρέφει" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Επιστρεφόμενος τύπος" @@ -1910,7 +1910,7 @@ msgid "variable" msgstr "μεταβλητή" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "συνάρτηση" @@ -1988,7 +1988,7 @@ msgid "Throws" msgstr "Προκαλεί" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "κλάση" @@ -2005,7 +2005,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ενσωματωμένη συνάρτηση)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (μέθοδος της %s)" @@ -2020,7 +2020,7 @@ msgstr "%s() (κλάση)" msgid "%s (global variable or constant)" msgstr "%s (καθολική μεταβλητή ή σταθερά)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (ιδιότητα της %s)" @@ -2034,20 +2034,20 @@ msgstr "Παράμετροι" msgid "%s (module)" msgstr "%s (μονάδα)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "μέθοδος" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "δεδομένα" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "ιδιότητα" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "μονάδα" @@ -2061,7 +2061,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "διπλότυπη ετικέτα της εξίσωσης %s, άλλη εμφάνιση στο %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Ανέγκυρο math_eqref_format: %r" @@ -2078,7 +2078,7 @@ msgstr "τελεστής" msgid "object" msgstr "αντικείμενο" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "εξαίρεση" @@ -2090,92 +2090,92 @@ msgstr "δήλωση" msgid "built-in function" msgstr "ενσωματωμένη συνάρτηση" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "Μεταβλητές" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "Προκαλεί" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (στη μονάδα %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (στη μονάδα %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (ενσωματωμένη μεταβλητή)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (ενσωματωμένη κλάση)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (κλάση σε %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (μέθοδος κλάσης της %s)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (στατική μέθοδος της %s)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Ευρετήριο Μονάδων της Python" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "μονάδες" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Αποσύρθηκε" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "μέθοδος της κλάσης" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "στατική μέθοδος" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "περισσότεροι από έναν στόχοι βρέθηκα για την παραπομπή %r: %s" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (αποσύρθηκε)" @@ -2211,112 +2211,112 @@ msgstr "ρόλος" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "μεταβλητή περιβάλλοντος; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "γλωσσάρι" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "γραμματική ένδειξη" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "ετικέτα αναφοράς" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "μεταβλητή περιβάλλοντος" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "επιλογή προγράμματος" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "έγγραφο" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "Ευρετήριο μονάδων" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Σελίδα αναζήτησης" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο %s" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "το numfig έχει απενεργοποιηθεί. Το :numref: θα ανγοηθεί." -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "ο σύνδεσμος δεν έχει λεζάντα: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "ανέγκυρο numfig_format: %s (%r)" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "ανέγκυρο numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2397,17 +2397,17 @@ msgid "" " will be generated" msgstr "το toctree περιλαμβάνει αναφορά στο έγγραφο %r η οποία δεν έχει τίτλο: δεν θα δημιουργηθεί σύνδεσμος" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "το αρχείο εικόνας δεν είναι αναγνώσιμο: %s" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "το αρχείο εικόνας %s δεν είναι αναγνώσιμο: %s" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "το μεταφορτωμένο αρχείο δεν είναι αναγνώσιμο: %s" @@ -2617,12 +2617,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Η οδηγία Graphviz δεν είναι δυνατό να περιλαμβάνει και περιεχόμενο και ένα όρισμα ονόματος αρχείου" @@ -3002,12 +3016,12 @@ msgstr "αδυναμία ανάλυσης ονόματος %s" msgid "failed to import object %s" msgstr "αδυναμία εισαγωγής αντικειμένου %s" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3207,7 +3221,7 @@ msgstr "σελίδα" msgid "Table of Contents" msgstr "Πίνακας περιεχομένων" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Αναζήτηση" @@ -3288,35 +3302,35 @@ msgstr "μπορεί να είναι τεράστιο" msgid "Navigation" msgstr "Πλοήγηση" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "Αναζήτηση στο %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "Σχετικά με αυτά τα κείμενα" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright%(copyright)s" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Τελευταία ενημέρωση στις %(last_updated)s." -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3361,12 +3375,12 @@ msgid "search" msgstr "αναζήτηση" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "Αποτελέσματα Αναζήτησης" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3408,48 +3422,36 @@ msgstr "Αλλαγές στο API της C" msgid "Other changes" msgstr "Άλλες αλλαγές" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "Μόνιμος σύνδεσμος σε αυτήν την κεφαλίδα" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "Μόνιμος σύνδεσμος σε αυτόν τον ορισμό" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "Απόκρυψη Ευρεθέντων Αναζητήσεων" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "Εκτελείται η αναζήτηση" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "Προετοιμασία αναζήτησης..." -#: sphinx/themes/basic/static/searchtools.js:310 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "Η αναζήτηση ολοκληρώθηκε, βρέθηκε/αν %s σελίδα/ες με βάση τους όρους αναζήτησης." - -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr ", στο " -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" -msgstr "Άνοιγμα πλαϊνής μπάρας" - -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" msgstr "Κλείσιμο πλαϊνής μπάρας" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" +msgstr "Άνοιγμα πλαϊνής μπάρας" + #: sphinx/themes/haiku/layout.html:24 msgid "Contents" msgstr "Περιεχόμενα" @@ -3469,25 +3471,25 @@ msgstr "Δεν υπάρχει αναφορά για την υποσημείωσ msgid "Footnote [#] is not referenced." msgstr "Η υποσημείωση [#] δεν αναφέρεται." -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "ασυνεπείς αναφορές υποσημείωσης στα μεταφρασμένα μηνύματα. original: {0}, translated: {1}" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "ασυνεπείς αναφορές στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "ασυνεπείς αναφορές παραπομπής στο μεταφρασμένο μήνυμα. αρχικό: {0}, μεταφρασμένο: {1}" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3529,16 +3531,16 @@ msgstr "Δεν ήταν δυνατή η λήψη απομακρυσμένης ε msgid "Unknown image format: %s..." msgstr "Άγνωστος τύπος αρχείου: %s..." -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "μη κωδικοποιήσιμοι χαρακτήρες πηγής, θα αντικατασταθούν με \"?\": %r" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "παράβλεψη" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "αποτυχία" @@ -3549,32 +3551,32 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "άγνωστος τύπος κόμβου: %r" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "σφάλμα ανάγνωσης: %s, %s" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "καταγραφή λάθους: %s, %s" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3596,6 +3598,11 @@ msgstr "εξαίρεση κατά την αξιολόγηση μόνο της έ msgid "default role %s not found" msgstr "ο προεπιλεγμένος ρόλος %s δεν βρέθηκε" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "Μόνιμος σύνδεσμος σε αυτόν τον ορισμό" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3610,6 +3617,11 @@ msgstr "Κανένα ID δεν έχει ανατεθεί στο κόμβο %s" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα" @@ -3630,40 +3642,40 @@ msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακ msgid "Could not obtain image size. :scale: option is ignored." msgstr "Δεν ήταν δυνατή η λήψη του μεγέθους της εικόνας. Η επιλογή :scale: θα αγνοηθεί." -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "άγνωστο toplevel_sectioning %r για την κλάσση %r" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "πολύ μεγάλο :maxdepth:, θα αγνοηθεί." -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "ο τίτλος του εγγράφου δεν είναι μονός κόμβος κειμένου" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "ο ανακαλυφθέν τίτλος κόμβος δεν βρίσκεται σε τομέα, θέμα, πίνακα, προειδοποίηση ή πλαϊνή μπάρα" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "Σημειώσεις υποσέλιδου" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "τόσο η επιλογή για tabularcolumns όσο και για :widths: δίνονται. Η επιλογή :widths: θα αγνοηθεί." -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "η μονάδα διάστασης %s δεν είναι έγκυρη. Θα αγνοηθεί." -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "βρέθηκε άγνωστος τύπος εγγραφής ευρετηρίου %s" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.js b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.js index df057572e87..4807bef49c4 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index bd825ce2b27..d61b63b8328 100644 Binary files a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index e6601db54ea..ee7d40c0a44 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" @@ -65,76 +65,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -628,8 +628,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -638,8 +638,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -815,7 +815,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -859,16 +859,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -902,238 +902,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1880,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1889,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1907,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1985,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2002,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2017,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2031,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2075,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2087,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2208,112 +2208,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2394,17 +2394,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2614,12 +2614,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2999,12 +3013,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3204,7 +3218,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3285,35 +3299,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3358,12 +3372,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3405,46 +3419,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3466,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3526,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3556,22 +3558,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3593,6 +3595,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3607,6 +3614,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3627,40 +3639,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.js b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.js index 46183746e68..a14704b12fe 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index f09dfdc0ffe..299c6172a03 100644 Binary files a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index 8c91e23b4b1..097a7d90da7 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Adam Turner, 2022\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" @@ -66,76 +66,76 @@ msgstr "'setup' as currently defined in conf.py isn't a Python callable. Please msgid "loading translations [%s]... " msgstr "loading translations [%s]... " -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "done" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "not available for built-in messages" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "loading pickled environment" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "failed: %s" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "No builder selected, using default: html" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "succeeded" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "finished with problems" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "build %s, %s warning (with warnings treated as errors)." -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "build %s, %s warnings (with warnings treated as errors)." -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s warning." -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "build %s, %s warnings." -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "node class %r is already registered, its visitors will be overridden" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "directive %r is already registered, it will be overridden" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "role %r is already registered, it will be overridden" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "the %s extension does not declare if it is safe for parallel reading, assuming it isn't - please ask the extension author to check and make it explicit" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "the %s extension is not safe for parallel reading" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "the %s extension does not declare if it is safe for parallel writing, assuming it isn't - please ask the extension author to check and make it explicit" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "the %s extension is not safe for parallel writing" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "doing serial %s" @@ -629,8 +629,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -639,8 +639,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -860,16 +860,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -903,238 +903,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1881,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1890,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1908,7 +1908,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1986,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2003,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2018,7 +2018,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2032,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2076,7 +2076,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2088,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2209,112 +2209,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2395,17 +2395,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2615,12 +2615,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz directive cannot have both content and a filename argument" @@ -3000,12 +3014,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3205,7 +3219,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3286,35 +3300,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3359,12 +3373,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3406,46 +3420,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3467,25 +3469,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3527,16 +3529,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3557,22 +3559,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3594,6 +3596,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3608,6 +3615,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3628,40 +3640,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "Could not obtain image size. :scale: option is ignored." -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.js b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.js index ef63d3379af..fc45ca0d54a 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index 28e9396c0ea..2ba7676e9ad 100644 Binary files a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 4abbc2ba4a4..de134280a7a 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" @@ -65,76 +65,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -628,8 +628,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -638,8 +638,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -815,7 +815,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -859,16 +859,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -902,238 +902,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1880,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1889,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1907,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1985,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2002,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2017,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2031,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2075,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2087,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2208,112 +2208,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2394,17 +2394,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2614,12 +2614,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2999,12 +3013,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3204,7 +3218,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3285,35 +3299,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3358,12 +3372,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3405,46 +3419,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3466,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3526,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3556,22 +3558,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3593,6 +3595,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3607,6 +3614,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3627,40 +3639,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 762c50fcfa4..b9f5030d474 100644 Binary files a/sphinx/locale/es/LC_MESSAGES/sphinx.mo and b/sphinx/locale/es/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 12a6a49c2c6..021574183cb 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -9,14 +9,14 @@ # Guillem Borrell , 2011 # Ivan García , 2019 # Leonardo J. Caballero G. , 2013-2018,2020 -# Komiya Takeshi , 2016,2021 +# Takeshi KOMIYA , 2016,2021 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Komiya Takeshi , 2016,2021\n" +"Last-Translator: Takeshi KOMIYA , 2016,2021\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.js b/sphinx/locale/fi/LC_MESSAGES/sphinx.js index f96fbeacb32..4da8d5fabad 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": ">>", "Other changes": "", "Overview": "Yhteenveto", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "Javascript pit\u00e4\u00e4 olla sallittu, jotta etsint\u00e4 toimii.", "Preparing search...": "", "Previous topic": "<<", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "Etsi", "Search Page": "Etsi sivu", "Search Results": "Etsinn\u00e4n tulos", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 61acf37ffcb..fdba658c6bb 100644 Binary files a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 4a6ac6b99ca..56a737844fb 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -66,76 +66,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -629,8 +629,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -639,8 +639,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -860,16 +860,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -903,238 +903,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Yleinen sisällysluettelo" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "hakemisto" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr ">" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "<" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Sisällysluettelo" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1881,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1890,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1908,7 +1908,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1986,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2003,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2018,7 +2018,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2032,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (moduuli)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "moduuli" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2076,7 +2076,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2088,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "moduulit" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (poistettu)" @@ -2209,112 +2209,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "Moduuli sisällysluettelo" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Etsi sivu" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2395,17 +2395,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2615,12 +2615,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3000,12 +3014,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3205,7 +3219,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Etsi" @@ -3286,35 +3300,35 @@ msgstr "voi olla iso" msgid "Navigation" msgstr "Navikointi" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "Tietoja tästä documentistä" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3359,12 +3373,12 @@ msgid "search" msgstr "etsi" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "Etsinnän tulos" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3406,46 +3420,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "Piilota löydetyt" -#: sphinx/themes/basic/static/searchtools.js:136 -msgid "Searching" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 -msgid "Preparing search..." +#: sphinx/themes/basic/static/searchtools.js:213 +msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." +#: sphinx/themes/basic/static/searchtools.js:226 +msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3467,25 +3469,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3527,16 +3529,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3557,22 +3559,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3594,6 +3596,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3608,6 +3615,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3628,40 +3640,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 1b7a4ffacc6..7abb7ab2496 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -29,7 +29,7 @@ # Olivier Bonaventure , 2019 # Pierre Grépon , 2016 # Sebastien Douche , 2008 -# Komiya Takeshi , 2016,2020 +# Takeshi KOMIYA , 2016,2020 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js index a63791ce1db..b760a122f56 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index cedc7658410..5f201b6210a 100644 Binary files a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 189efbb0819..42c278acd05 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -65,76 +65,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -628,8 +628,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -638,8 +638,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -815,7 +815,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -859,16 +859,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -902,238 +902,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1880,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1889,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1907,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1985,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2002,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2017,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2031,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2075,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2087,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2208,112 +2208,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2394,17 +2394,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2614,12 +2614,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2999,12 +3013,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3204,7 +3218,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3285,35 +3299,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3358,12 +3372,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3405,46 +3419,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3466,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3526,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3556,22 +3558,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3593,6 +3595,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3607,6 +3614,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3627,40 +3639,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 7d3143468d8..9c7b232be58 100644 Binary files a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 54d2963c559..e3c06b9608c 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -6,12 +6,12 @@ # Ajay Singh , 2019 # Purnank H. Ghumalia , 2015-2016 # Sumanjali Damarla , 2020 -# Komiya Takeshi , 2019 +# Takeshi KOMIYA , 2019 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Sumanjali Damarla , 2020\n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -810,21 +810,21 @@ msgstr "लक्ष्य '%s' नहीं मिला" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "पुस्तिका पृष्ठ %(outdir)sमें हैं." -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "कोई \"man_pages\" विन्यास मान नहीं मिला; कोई नियमावली पृष्ठ नहीं लिखे जाएंगे" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "लिखा जा रहा है" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" @@ -3362,12 +3362,12 @@ msgid "search" msgstr "खोज" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "खोज परीणाम " #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3433,12 +3433,12 @@ msgstr "खोज जारी" msgid "Preparing search..." msgstr "खोज की तैयारी" -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "खोज पूर्ण, खोज विषय के अनुकूल %s पृष्ठ मिला (मिले)." -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr ", में " @@ -3550,12 +3550,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "अज्ञात बिंदु प्रकार: %r" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 5d15056f6bf..f6b166ccb75 100644 Binary files a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 7eec641d5e4..69b4cb662b8 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -806,21 +806,21 @@ msgstr "" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -3358,12 +3358,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3429,12 +3429,12 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr "" @@ -3546,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 5a42a0e9e49..7993893e02d 100644 Binary files a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 66ac965d7af..64944cae240 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Mario Šarić, 2015-2020\n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -807,21 +807,21 @@ msgstr "" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -3359,12 +3359,12 @@ msgid "search" msgstr "traži" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "Rezultati pretrage" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3430,12 +3430,12 @@ msgstr "Pretraživanje" msgid "Preparing search..." msgstr "Priprema pretrage..." -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Pretraga završena, pronađeno %s stranica." -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr ", u " @@ -3547,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 5c26d589c10..8f39a4b80bb 100644 Binary files a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index a8eb30e2250..4ef1d3ddb7e 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Balázs Úr, 2020\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -812,21 +812,21 @@ msgstr "" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -3364,12 +3364,12 @@ msgid "search" msgstr "keresés" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "Keresési Eredmények" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3435,12 +3435,12 @@ msgstr "Keresés folyamatban" msgid "Preparing search..." msgstr "Felkészülés a keresésre..." -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "A keresés befejeződött, %s oldal egyezik a keresési felételeknek." -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr ", " @@ -3552,12 +3552,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.js b/sphinx/locale/id/LC_MESSAGES/sphinx.js index 4b8ff2dfb20..9780f91ab0b 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "Topik berikutnya", "Other changes": "Perubahan lain", "Overview": "Tinjauan", - "Permalink to this definition": "Link permanen untuk definisi ini", - "Permalink to this headline": "Link permanen untuk headline ini", "Please activate JavaScript to enable the search\n functionality.": "Tolong aktifkan JavaScript untuk melakukan pencarian.\n ", "Preparing search...": "Penyiapkan pencarian...", "Previous topic": "Topik sebelumnya", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "Pencarian", "Search Page": "Pencarian Halaman", "Search Results": "Hasil Pencarian", - "Search finished, found %s page(s) matching the search query.": "Pencarian selesai, menemukan %s halaman yang cocok dengan kueri pencarian.", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "Pencarian dalam %(docstitle)s", "Searching": "Pencarian", "Searching for multiple words only shows matches that contain\n all words.": "Mencari beberapa kata hanya menunjukkan kecocokan yang mengandung\n \u00a0\u00a0 semua kata.", diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index a68f96b4532..675a6c675c7 100644 Binary files a/sphinx/locale/id/LC_MESSAGES/sphinx.mo and b/sphinx/locale/id/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 9736e561702..b37492da8ab 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: oon arfiandwi , 2019-2020\n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -70,76 +70,76 @@ msgstr "'setup' yang saat ini didefinisikan pada conf.py bukanlah sebuah Python msgid "loading translations [%s]... " msgstr "memuat terjemahan [%s]... " -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "selesai" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "tidak tersedia untuk built-in messages" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "memuat lingkungan yang diawetkan" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "gagal: %s" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "Tidak ada builder yang dipilih, menggunakan default: html" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "berhasil" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "selesai with masalah" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "bangun %s, %s peringatan (dengan peringatan dianggap sebagai kesalahan)." -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s peringatan." -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "kelas simpul %r sudah terdaftar, pengunjungnya akan diganti" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "pengarahan %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "peran %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -147,12 +147,12 @@ msgid "" "explicit" msgstr "ekstensi %s tidak akan dinyatakan jika itu aman untuk pembacaan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "ekstensi %s tidak aman untuk pembacaan paralel" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -160,12 +160,12 @@ msgid "" "explicit" msgstr " \nekstensi %s tidak akan dinyatakan jika itu aman untuk penulisan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "ekstensi %s tidak aman untuk penulisan paralel" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "mengerjakan serial %s" @@ -633,8 +633,8 @@ msgstr "menyiapkan dokumen" msgid "duplicated ToC entry found: %s" msgstr "entri ToC ganda ditemukan: %s" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "menyalin gambar... " @@ -643,8 +643,8 @@ 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:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "tidak dapat menyalin berkas gambar %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:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file yang salah: %r, mengabaikan" @@ -791,22 +791,22 @@ msgstr "membaca templat... " msgid "writing message catalogs... " msgstr "menulis katalog pesan... " -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Mencari kesalahan sembarang dalam keluaran di atas atau di %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "tautan rusak: %s (%s)" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "Anchor '%s' tidak ditemukan" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -820,7 +820,7 @@ msgstr "Halaman manual berada di %(outdir)s." msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "tidak ditemukan nilai konfigurasi \"man_pages\"; halaman manual tidak akan ditulis" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "penulisan" @@ -864,16 +864,16 @@ msgstr "tidak ditemukan nilai konfigurasi \"texinfo_documents\"; dokumen tidak a msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "nilai konfigurasi \"texinfo_documents\" mereferensikan dokumen yang tidak dikenal %s" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "memroses %s" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "memecahkan referensi..." -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (dalam " @@ -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:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -907,238 +907,238 @@ msgstr "Berkas XML berada di %(outdir)s." msgid "The pseudo-XML files are in %(outdir)s." msgstr "Berkas pseudo-XML berada di %(outdir)s." -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "berkas info build rusak: %r" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Halaman HTML berada di %(outdir)s." -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "Gagal membaca berkas info build: %r" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks Umum" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "berikut" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "sebelum" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "menghasilkan indeks" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "menulis halaman tambahan" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "menyalin berkas yang dapat diunduh... " -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "tidak dapat menyalin berkas yang dapat diunduh %r: %s" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "tidak dapat menyalin berkas statik %r" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "menyalin berkas tambahan" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "tidak dapat menyalin berkas ekstra %r" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "Gagal menulis berkas info build: %r" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, 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:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, 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:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "menyisihkan persediaan obyek" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file yang salah: %r, mengabaikan" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 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:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer %r yang tidak diketahui diberikan." -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "entri html_extra_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "entri html_static_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "berkas logo %r tidak ada" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "berkas favicon %r tidak ada" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "Dokumentasi %s %s" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Berkas LaTeX berada di %(outdir)s." -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nJalankan 'make' di direktori tersebut untuk menjalankannya melalui (pdf)latex\n(gunakan 'make latexpdf' di sini untuk melakukannya secara otomatis)." -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "tidak ditemukan nilai konfigurasi \"latex_documents\"; dokumen tidak akan ditulis" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "nilai konfigurasi \"latex_documents\" mereferensikan dokumen yang tidak dikenal %s" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "Rilis" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "tidak ada opsi Babel yang dikenal untuk bahasa %r" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "menyalin berkas pendukung TeX" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "menyalin berkas pendukung TeX... " -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "menyalin berkas tambahan" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1885,7 +1885,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Parameter" @@ -1894,12 +1894,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Kembali" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Return type" @@ -1912,7 +1912,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "fungsi" @@ -1990,7 +1990,7 @@ msgid "Throws" msgstr "Throws" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "class" @@ -2007,7 +2007,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (fungsi built-in)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (method %s)" @@ -2022,7 +2022,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "%s (variabel global atau konstan)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2036,20 +2036,20 @@ msgstr "Argumen" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "method" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "modul" @@ -2063,7 +2063,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplikasi label persamaan %s, misalnya di %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Math_eqref_format tidak valid: %r" @@ -2080,7 +2080,7 @@ msgstr "operator" msgid "object" msgstr "object" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "eksepsi" @@ -2092,92 +2092,92 @@ msgstr "statement" msgid "built-in function" msgstr "fungsi built-in" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "Variabel" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (di modul %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (di modul %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabel built-in)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (class built-in)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (class di %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (method class %s)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (method static %s)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Indeks Modul Python" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "modul" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Akan ditinggalkan" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "method class" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "method static" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "lebih dari satu target ditemukan untuk referensi silang %r: %s" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (obsolet)" @@ -2213,112 +2213,112 @@ msgstr "role" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "variabel environment; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Deskripsi opsi salah bentuk %r, seharusnya terlihat seperti \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" atau \"+opt args\"" -#: sphinx/domains/std.py:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "opsi baris perintah" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "Daftar Istilah kata sulit harus didahului dengan baris kosong" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "Daftar istilah kata sulit tidak boleh dipisahkan oleh garis kosong" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "Daftar istilah kata sulit tampaknya salah format, periksa indentasi" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "daftar istilah" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "token grammar" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "label referensi" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "variabel environment" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "opsi program" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "dokumen" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "Indeks Modul" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pencarian Halaman" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "label rangkap %s, contoh lain dalam %s" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig dinonaktifkan. :numref: diabaikan." -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "tautan tidak memiliki teks: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format tidak valid: %s (%r)" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format tidak valid: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2399,17 +2399,17 @@ msgid "" " will be generated" msgstr "toctree berisi referensi ke dokumen %r yang tidak memiliki judul: tidak ada tautan yang akan dihasilkan" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "berkas gambar tidak dapat dibaca: %s" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "berkas gambar %s tidak dapat dibaca: %s" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "berkas unduhan tidak dapat dibaca: %s" @@ -2619,12 +2619,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Pengarahan Graphviz tidak dapat memiliki konten dan argumen nama berkas sekaligus" @@ -3004,12 +3018,12 @@ msgstr "gagal mengurai nama %s" msgid "failed to import object %s" msgstr "gagal mengimpor objek %s" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3209,7 +3223,7 @@ msgstr "laman" msgid "Table of Contents" msgstr "Daftar Isi" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Pencarian" @@ -3290,35 +3304,35 @@ msgstr "dapat menjadi besar" msgid "Navigation" msgstr "Navigasi" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "Pencarian dalam %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "Tentang dokumen ini" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "Hak Cipta" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Hak cipta %(copyright)s." -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Hak cipta %(copyright)s." -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Terakhir diperbarui pada %(last_updated)s." -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3363,12 +3377,12 @@ msgid "search" msgstr "pencarian" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "Hasil Pencarian" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3410,48 +3424,36 @@ msgstr "Perubahan API C" msgid "Other changes" msgstr "Perubahan lain" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "Link permanen untuk headline ini" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "Link permanen untuk definisi ini" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "Sembunyikan Hasil Pencarian" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "Pencarian" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "Penyiapkan pencarian..." -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "Pencarian selesai, menemukan %s halaman yang cocok dengan kueri pencarian." - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr ", di" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" -msgstr "Buka sidebar" - -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" msgstr "Tutup sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" +msgstr "Buka sidebar" + #: sphinx/themes/haiku/layout.html:24 msgid "Contents" msgstr "Konten" @@ -3471,25 +3473,25 @@ msgstr "Catatan kaki [%s] tidak dirujuk." msgid "Footnote [#] is not referenced." msgstr "Catatan kaki [#] tidak dirujuk." -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "referensi catatan kaki yang tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "referensi yang tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referensi kutipan tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3531,16 +3533,16 @@ msgstr "Tidak dapat mengambil gambar jarak jauh: %s [%s]" msgid "Unknown image format: %s..." msgstr "Format gambar tidak dikenal: %s..." -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "karakter sumber undecodable, menggantinya dengan \"?\": %r" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "dilewati" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "gagal" @@ -3561,22 +3563,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "tipe simpul tidak dikenal: %r" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "kesalahan membaca: %s, %s" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "kesalahan menulis: %s, %s" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3598,6 +3600,11 @@ msgstr "pengecualian saat mengevaluasi hanya ekspresi pengarahan: %s" msgid "default role %s not found" msgstr "peran bawaan %s tidak ditemukan" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "Link permanen untuk definisi ini" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3612,6 +3619,11 @@ msgstr "Tidak ada ID apa pun yang ditugaskan untuk simpul %s" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "Link permanen untuk table ini" @@ -3632,40 +3644,40 @@ msgstr "Tautan ke daftar isi ini" msgid "Could not obtain image size. :scale: option is ignored." msgstr "Tidak dapat memperoleh ukuran gambar. :scale: option diabaikan." -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "%r toplevel_sectioning tidak diketahui untuk kelas %r" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: terlalu besar, diabaikan." -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "judul dokumen bukan simpul Text tunggal" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "simpul judul tidak ditemui dalam bagian, topik, tabel, peringatan atau sisi bilah" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "Catatan kaki" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "opsi tabularcolumns dan :widths: opsi diberikan bersamaan. :widths: diabaikan." -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "unit dimensi %s tidak valid. Diabaikan" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "entri indeks tidak diketahui ditemukan tipe %s" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.js b/sphinx/locale/it/LC_MESSAGES/sphinx.js index b574dcd2c15..1ff8309cd78 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "Argomento successivo", "Other changes": "Altre modifiche", "Overview": "Sintesi", - "Permalink to this definition": "Link a questa definizione", - "Permalink to this headline": "Link a questa intestazione", "Please activate JavaScript to enable the search\n functionality.": "Attiva JavaScript per abilitare la funzione\u23ce\ndi ricerca.", "Preparing search...": "Preparo la ricerca...", "Previous topic": "Argomento precedente", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "Cerca", "Search Page": "Cerca", "Search Results": "Risultati della ricerca", - "Search finished, found %s page(s) matching the search query.": "Ricerca completata, trovata/e %s pagina/e corrispondenti.", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "Cerca in %(docstitle)s", "Searching": "Cerca", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 73bf05a22c4..b321ad309cc 100644 Binary files a/sphinx/locale/it/LC_MESSAGES/sphinx.mo and b/sphinx/locale/it/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 213c0076528..57120e058c4 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -7,12 +7,12 @@ # Paolo Cavallini , 2013-2017 # Roland Puntaier , 2013 # Sandro Dentella , 2008 -# Komiya Takeshi , 2016 +# Takeshi KOMIYA , 2016 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Denis Cappellin , 2018\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -70,76 +70,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "fatto" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "terminato con problemi" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -147,12 +147,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -160,12 +160,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -633,8 +633,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -643,8 +643,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -768,7 +768,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -791,41 +791,41 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -864,16 +864,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (in " @@ -891,7 +891,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -907,238 +907,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indice generale" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "indice" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "successivo" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "precedente" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "%s %s documentazione" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Indice" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "Release" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1885,7 +1885,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Parametri" @@ -1894,12 +1894,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Ritorna" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Tipo di ritorno" @@ -1912,7 +1912,7 @@ msgid "variable" msgstr "variabile" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "funzione" @@ -1990,7 +1990,7 @@ msgid "Throws" msgstr "Solleva" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "classe" @@ -2007,7 +2007,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funzione built-in)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodo)" @@ -2022,7 +2022,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variabile globale o costante)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attributo)" @@ -2036,20 +2036,20 @@ msgstr "Parametri" msgid "%s (module)" msgstr "%s (modulo)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "metodo" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "attributo" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "modulo" @@ -2063,7 +2063,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "etichetta dell'equazione %s duplicata, altra istanza in %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,7 +2080,7 @@ msgstr "operatore" msgid "object" msgstr "oggetto" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "eccezione" @@ -2092,92 +2092,92 @@ msgstr "statement" msgid "built-in function" msgstr "funzione built-in" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "Variabili" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "Solleva" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (nel modulo %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (nel modulo %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabile built-in)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (classe built-in)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (classe in %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metodo della classe)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo statico)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Indice del modulo Python" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "moduli" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Deprecato" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "metodo della classe" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "metodo statico" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (deprecato)" @@ -2213,112 +2213,112 @@ msgstr "ruolo" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "variabile d'ambiente, %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "voce del glossario" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "elemento grammaticale" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "etichetta di riferimento" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "variabile d'ambiente" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "opzione del programma" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "Indice dei moduli" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Cerca" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2399,17 +2399,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2619,12 +2619,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3004,12 +3018,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3209,7 +3223,7 @@ msgstr "pagina" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Cerca" @@ -3290,35 +3304,35 @@ msgstr "può essere enorme" msgid "Navigation" msgstr "Navigazione" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "Cerca in %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "A proposito di questi documenti" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Ultimo aggiornamento %(last_updated)s." -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3363,12 +3377,12 @@ msgid "search" msgstr "cerca" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "Risultati della ricerca" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3410,48 +3424,36 @@ msgstr "Modifiche nelle API C" msgid "Other changes" msgstr "Altre modifiche" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "Link a questa intestazione" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "Link a questa definizione" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "Nascondi i risultati della ricerca" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "Cerca" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "Preparo la ricerca..." -#: sphinx/themes/basic/static/searchtools.js:310 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "Ricerca completata, trovata/e %s pagina/e corrispondenti." - -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr ", in " -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" -msgstr "Espandi la barra laterale" - -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" msgstr "Comprimi la barra laterale" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" +msgstr "Espandi la barra laterale" + #: sphinx/themes/haiku/layout.html:24 msgid "Contents" msgstr "Contenuti" @@ -3471,25 +3473,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3531,16 +3533,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3551,32 +3553,32 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3598,6 +3600,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "Link a questa definizione" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3612,6 +3619,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "Link a questa tabella" @@ -3632,40 +3644,40 @@ msgstr "Link a questo indice" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "Note a piè di pagina" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 16a0de91f5c..4c00f68ef08 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -8,14 +8,14 @@ # tomo, 2018 # Hisahiro Ohmura, 2017 # KaKkouo, 2021 -# Komiya Takeshi , 2021 +# Takeshi KOMIYA , 2021 # Kouhei Sutou , 2011 # sutefu7, 2019-2020 # shirou - しろう , 2017 # Taizo Ito , 2019 # Takayuki SHIMIZUKAWA , 2013-2016 # Takayuki SHIMIZUKAWA , 2016-2017,2019 -# Komiya Takeshi , 2016-2017,2019 +# Takeshi KOMIYA , 2016-2017,2019 # Tetsuo Koyama , 2020-2021 # tomo, 2019 # shirou - しろう , 2014 diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.js b/sphinx/locale/ko/LC_MESSAGES/sphinx.js index 9f0a138272f..e38dcdde0be 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "\ub2e4\uc74c \ud56d\ubaa9", "Other changes": "\ub2e4\ub978 \ubcc0\uacbd \uc0ac\ud56d", "Overview": "\uac1c\uc694", - "Permalink to this definition": "\uc774 \uc815\uc758\uc5d0 \ub300\ud55c \ud37c\uba38\ub9c1\ud06c", - "Permalink to this headline": "\uc774 \ud45c\uc81c\uc5d0 \ub300\ud55c \ud37c\uba38\ub9c1\ud06c", "Please activate JavaScript to enable the search\n functionality.": "\uac80\uc0c9 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\ub824\uba74 JavaScript\ub97c \ud65c\uc131\ud654\ud558\uc2ed\uc2dc\uc624.", "Preparing search...": "\uac80\uc0c9 \uc900\ube44 \uc911\u2026", "Previous topic": "\uc774\uc804 \ud56d\ubaa9", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "\uac80\uc0c9", "Search Page": "\uac80\uc0c9 \ud398\uc774\uc9c0", "Search Results": "\uac80\uc0c9 \uacb0\uacfc", - "Search finished, found %s page(s) matching the search query.": "\uac80\uc0c9\uc774 \uc644\ub8cc\ub418\uc5c8\uc73c\uba70, \uac80\uc0c9\uc5b4\uc640 \uc77c\uce58\ud558\ub294 %s \uac1c \ud398\uc774\uc9c0\ub97c \ucc3e\uc558\uc2b5\ub2c8\ub2e4.", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "%(docstitle)s\uc5d0\uc11c \ucc3e\uae30", "Searching": "\uac80\uc0c9 \uc911", "Searching for multiple words only shows matches that contain\n all words.": "\uc5ec\ub7ec \ub2e8\uc5b4\ub97c \uac80\uc0c9\ud558\uba74 \ubaa8\ub4e0 \ub2e8\uc5b4\uac00 \ud3ec\ud568\ub41c \uc77c\uce58 \ud56d\ubaa9\ub9cc \ud45c\uc2dc\ub429\ub2c8\ub2e4.", diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 39d38fe92ea..47f91f8b9ce 100644 Binary files a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 3075949a6d6..035b762a933 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: YT H , 2019-2022\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -67,76 +67,76 @@ msgstr "현재 conf.py 파일에 정의된 'setup'은 호출 가능한 Python msgid "loading translations [%s]... " msgstr "번역을 불러오는 중 [%s]… " -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "완료" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "기본 제공 메시지를 사용할 수 없습니다" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "pickle로 저장된 환경을 불러오는 중" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "실패: %s" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "선택한 빌더가 없으므로, 기본값인 html을 사용합니다" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "성공" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "완료했으나 문제점 발견" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "빌드 %s." -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "%r 노드 클래스가 이미 등록되어 있으며, 방문자를 무시합니다" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "%r 지시문이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "%r 역할이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 읽기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 확장 기능은 병렬 읽기에 안전하지 않습니다" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 쓰기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 확장 기능은 병렬 쓰기에 안전하지 않습니다" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "병렬 %s 처리" @@ -630,8 +630,8 @@ msgstr "문서 준비 중" msgid "duplicated ToC entry found: %s" msgstr "중복된 목차 항목 발견: %s" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "이미지를 복사하는 중… " @@ -640,8 +640,8 @@ msgstr "이미지를 복사하는 중… " msgid "cannot read image file %r: copying it instead" msgstr "이미지 파일 %r을(를) 읽을 수 없으며, 대신 복사합니다" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "이미지 파일 %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:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "잘못된 css_file: %r, 무시합니다" @@ -788,41 +788,41 @@ msgstr "템플릿을 읽는 중… " msgid "writing message catalogs... " msgstr "메시지 카탈로그 작성 중… " -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, 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:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "끊어진 링크: %s (%s)" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "앵커 '%s'을(를) 찾을 수 없습니다" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "linkcheck_allowed_redirects에서 정규식을 컴파일하지 못했습니다: %r %s" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "매뉴얼 페이지는 %(outdir)s에 있습니다." -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "\"man_pages\" 설정값이 없으므로, 매뉴얼 페이지를 작성하지 않습니다" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "작성 중" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" 설정값이 알 수 없는 문서 %s을(를) 참조합니다" @@ -861,16 +861,16 @@ msgstr "\"texinfo_documents\" 설정값이 없으므로, 문서를 작성하지 msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "\"texinfo_documents\" 설정값이 알 수 없는 문서 %s을(를) 참조합니다" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "%s 처리 중" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "참조 처리 중…" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (문서 " @@ -888,7 +888,7 @@ msgstr "Makefile 쓰기 오류: %s" msgid "The text files are in %(outdir)s." msgstr "텍스트 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -904,238 +904,238 @@ msgstr "XML 파일은 %(outdir)s에 있습니다." msgid "The pseudo-XML files are in %(outdir)s." msgstr "의사 XML 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "빌드 정보 파일이 손상되었습니다: %r" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "HTML 페이지는 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "빌드 정보 파일을 읽을 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%Y년 %m월 %d일" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "전체 색인" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "색인" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "다음" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "이전" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "색인 생성 중" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "추가 페이지 작성 중" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "다운로드 가능한 파일을 복사하는 중… " -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "다운로드 가능한 파일 %r을(를) 복사할 수 없습니다: %s" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, 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:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "정적 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "정적 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "추가 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "추가 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "빌드 정보 파일 쓰기 실패: %r" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, 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:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%s 페이지를 렌더링하는 중에 오류가 발생했습니다.\n원인: %r" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "객체 인벤토리 덤프 중" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "%s에서 검색 인덱스 덤프 중" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "잘못된 js_file: %r, 무시합니다" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "여러 math_renderers가 등록되어 있습니다. 하지만 math_renderer가 선택되지 않았습니다." -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "알 수 없는 math_renderer %r이(가) 지정되었습니다." -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "로고 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "Favicon 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "%s %s 문서" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTeX 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\n(pdf)latex을 통해 작업하려면 해당 디렉토리에서 'make'를 실행하십시오\n(자동으로 수행하려면 여기에서 'make latexpdf'를 사용하십시오)." -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "\"latex_documents\" 설정값이 없으므로, 문서를 작성하지 않습니다" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" 설정값이 알 수 없는 문서 %s을(를) 참조합니다" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "색인" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "릴리스" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "%r 언어에 대해 알려진 Babel 옵션이 없습니다" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "TeX 지원 파일을 복사하는 중" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "TeX 지원 파일을 복사하는 중…" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "추가 파일을 복사하는 중" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "알 수 없는 설정 키: latex_elements[%r], 무시합니다." -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "알 수 없는 테마 옵션: latex_theme_options[%r], 무시합니다." @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "매개변수" @@ -1891,12 +1891,12 @@ msgid "Return values" msgstr "반환값" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "반환" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "반환 형식" @@ -1909,7 +1909,7 @@ msgid "variable" msgstr "변수" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "함수" @@ -1987,7 +1987,7 @@ msgid "Throws" msgstr "예외" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "클래스" @@ -2004,7 +2004,7 @@ msgstr "템플릿 매개변수" msgid "%s() (built-in function)" msgstr "%s() (내장 함수)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 메서드)" @@ -2019,7 +2019,7 @@ msgstr "%s() (클래스)" msgid "%s (global variable or constant)" msgstr "%s (전역 변수 또는 상수)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s의 속성)" @@ -2033,20 +2033,20 @@ msgstr "인수" msgid "%s (module)" msgstr "%s (모듈)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "메서드" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "데이터" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "속성" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" 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:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "잘못된 math_eqref_format: %r" @@ -2077,7 +2077,7 @@ msgstr "연산자" msgid "object" msgstr "객체" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "예외" @@ -2089,92 +2089,92 @@ msgstr "문" msgid "built-in function" msgstr "내장 함수" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "변수" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "예외 발생" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s 모듈)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (%s 모듈)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (내장 클래스)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 클래스)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s의 클래스 메서드)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "%s (%s의 특성)" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s의 정적 메서드)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Python 모듈 목록" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "모듈" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "폐지됨" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "클래스 메서드" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "정적 메서드" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "특성" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s의 중복 객체 설명, 다른 인스턴스는 %s에 있으며, 이 중 하나에 :noindex:를 사용하십시오" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "상호 참조 %r에 대해 둘 이상의 대상을 찾았습니다: %s" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (폐지됨)" @@ -2210,112 +2210,112 @@ msgstr "역할" msgid "duplicate description of %s %s, other instance in %s" msgstr "중복된 %s %s 설명, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "환경 변수; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "%s 명령줄 옵션" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "명령줄 옵션" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "용어 앞에는 빈 줄이 와야 합니다" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "용어 정의는 빈 줄로 구분하면 안됩니다." -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "용어 정의 형식이 잘못된 것 같습니다. 들여쓰기를 확인하십시오" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "용어 항목" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "문법 토큰" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "참조 레이블" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "환경 변수" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "프로그램 옵션" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "문서" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "모듈 목록" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "검색 페이지" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "중복 레이블 %s, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "중복된 %s 설명 (%s에 대한), 다른 인스턴스는 %s에 있음" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig가 비활성화되었습니다. :numref:는 무시됩니다." -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "상호 참조를 생성하지 못했습니다. 어떤 번호도 할당되지 않았습니다: %s" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "링크에 캡션이 없습니다: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "잘못된 numfig_format: %s (%r)" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "잘못된 numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "정의되지 않은 레이블: %s" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "상호 참조를 생성하지 못했습니다. 제목 또는 캡션을 찾을 수 없습니다: %s" @@ -2396,17 +2396,17 @@ msgid "" " will be generated" msgstr "toctree에 제목이 없는 문서 %r에 대한 참조가 있습니다. 링크가 생성되지 않습니다" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "이미지 파일을 읽을 수 없음: %s" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "이미지 파일 %s을(를) 읽을 수 없음: %s" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "다운로드 가능 파일을 읽을 수 없음: %s" @@ -2616,12 +2616,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== 가장 느린 읽기 시간 =======================" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "하드코딩 된 링크 %r은(는) extlink로 대체할 수 있습니다 (대신 %r을(를) 사용해 보십시오)" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz 지시문에 내용과 파일 이름 인수를 모두 지정할 수 없습니다" @@ -3001,12 +3015,12 @@ msgstr "이름 %s을(를) 해석하지 못함" msgid "failed to import object %s" msgstr "객체 %s을(를) import 하지 못함" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 파일을 찾을 수 없음: %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3206,7 +3220,7 @@ msgstr "페이지" msgid "Table of Contents" msgstr "목차" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "검색" @@ -3287,35 +3301,35 @@ msgstr "큰 경우가 있으므로 주의" msgid "Navigation" msgstr "탐색" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s에서 찾기" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "이 문서 정보" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "저작권" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "© 저작권 %(copyright)s." -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "© 저작권 %(copyright)s." -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "최종 업데이트: %(last_updated)s" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3360,12 +3374,12 @@ msgid "search" msgstr "검색" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "검색 결과" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3407,48 +3421,36 @@ msgstr "C API 변경 사항" msgid "Other changes" msgstr "다른 변경 사항" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "이 표제에 대한 퍼머링크" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "이 정의에 대한 퍼머링크" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "검색 일치 숨기기" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "검색 중" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "검색 준비 중…" -#: sphinx/themes/basic/static/searchtools.js:310 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "검색이 완료되었으며, 검색어와 일치하는 %s 개 페이지를 찾았습니다." - -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr ", 문서 - " -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" -msgstr "사이드바 열기" - -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" msgstr "사이드바 닫기" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" +msgstr "사이드바 열기" + #: sphinx/themes/haiku/layout.html:24 msgid "Contents" msgstr "내용" @@ -3468,25 +3470,25 @@ msgstr "각주 [%s]이(가) 참조되지 않았습니다." msgid "Footnote [#] is not referenced." msgstr "각주 [#]이 참조되지 않았습니다." -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "번역된 메시지의 각주 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "번역된 메시지의 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "번역된 메시지의 인용 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3528,16 +3530,16 @@ msgstr "원격 이미지를 가져올 수 없습니다: %s [%s]" msgid "Unknown image format: %s..." msgstr "알 수 없는 이미지 형식: %s…" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "디코드 할 수 없는 원본 문자이며, \"?\"로 대체합니다: %r" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "건너뜀" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "실패" @@ -3548,32 +3550,32 @@ msgid "" "not in the domain." msgstr "%s 영역에서 문제 발생: 필드가 '%s' 역할을 사용해야 하지만, 해당 역할이 도메인에 없습니다." -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "알 수 없는 지시문 또는 역할 이름: %s:%s" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "알 수 없는 노드 유형: %r" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "읽기 오류: %s, %s" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "쓰기 오류: %s, %s" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "locale_dir %s이(가) 존재하지 않습니다" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3595,6 +3597,11 @@ msgstr "only 지시문 식을 평가하는 동안 예외 발생: %s" msgid "default role %s not found" msgstr "기본 역할 %s을(를) 찾을 수 없음" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "이 정의에 대한 퍼머링크" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3609,6 +3616,11 @@ msgstr "%s 노드에 할당되지 않은 ID" msgid "Permalink to this term" msgstr "이 용어에 대한 퍼머링크" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "이 표에 대한 퍼머링크" @@ -3629,40 +3641,40 @@ msgstr "이 목차에 대한 퍼머링크" msgid "Could not obtain image size. :scale: option is ignored." msgstr "이미지 크기를 얻어올 수 없습니다. :scale: 옵션을 무시합니다." -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "알 수 없는 %r toplevel_sectioning (클래스 %r)" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr ":maxdepth:가 너무 크며, 무시합니다." -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "문서 제목이 단일 텍스트 노드가 아님" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "구역, 주제, 표, 조언, 사이드바 안에 있지 않은 제목 노드가 발견됨" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "각주" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "tabularcolumns와 :widths: 옵션이 모두 설정되었습니다. :widths:는 무시됩니다." -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "치수 단위 %s이(가) 잘못되었습니다. 무시합니다." -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "알 수 없는 색인 항목 유형 %s이(가) 발견됨" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index a087feea19e..3fafedfa6b9 100644 Binary files a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 34d780b36b1..72310a68778 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: DALIUS DOBRAVOLSKAS , 2010\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -807,21 +807,21 @@ msgstr "" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -3359,12 +3359,12 @@ msgid "search" msgstr "ieškoti" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "Paieškos rezultatai" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3430,12 +3430,12 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr "" @@ -3547,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.js b/sphinx/locale/mk/LC_MESSAGES/sphinx.js index 66debcee058..3769dcb9083 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index a967838e0cd..3fdb893fc1e 100644 Binary files a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index b3a382f0aca..02db720986a 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vasil Vangelovski , 2013\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -66,76 +66,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -629,8 +629,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -639,8 +639,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -860,16 +860,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (во " @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -903,238 +903,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Главна содржина" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "содржина" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "следна" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "претходна" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "%s %s документација" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1881,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Параметри" @@ -1890,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Враќа" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Повратен тип" @@ -1908,7 +1908,7 @@ msgid "variable" msgstr "променлива" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "функција" @@ -1986,7 +1986,7 @@ msgid "Throws" msgstr "Фрла" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "класа" @@ -2003,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вградена функција)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -2018,7 +2018,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2032,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2076,7 +2076,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2088,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2209,112 +2209,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2395,17 +2395,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2615,12 +2615,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3000,12 +3014,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3205,7 +3219,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3286,35 +3300,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3359,12 +3373,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3406,46 +3420,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3467,25 +3469,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3527,16 +3529,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3557,22 +3559,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3594,6 +3596,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3608,6 +3615,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3628,40 +3640,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index cc3dd6d5e0a..df5856fc3db 100644 Binary files a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 4ef7703ec10..7e024e47ca8 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -806,21 +806,21 @@ msgstr "" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -3358,12 +3358,12 @@ msgid "search" msgstr "søk" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "Søkeresultat" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3429,12 +3429,12 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr "" @@ -3546,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.js b/sphinx/locale/ne/LC_MESSAGES/sphinx.js index 123c75734d0..c421759bd77 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "\u092a\u091b\u093f\u0932\u094d\u0932\u094b \u0935\u093f\u0937\u092f", "Other changes": "\u0905\u0930\u0941 \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941 ", "Overview": "\u092a\u0941\u0928\u0930\u093e\u0935\u0932\u094b\u0915\u0928 ", - "Permalink to this definition": "\u092f\u094b \u0905\u0930\u094d\u0925\u0915\u094b \u0932\u093e\u0917\u093f \u092a\u0930\u094d\u092e\u093e\u0932\u093f\u0928\u094d\u0915", - "Permalink to this headline": "\u092f\u094b \u0936\u093f\u0930\u094d\u0937\u0915\u0915\u094b \u0932\u093e\u0917\u093f \u092a\u0930\u094d\u092e\u093e\u0932\u093f\u0928\u094d\u0915 \u0964 ", "Please activate JavaScript to enable the search\n functionality.": "\u0916\u094b\u091c\u094d\u0928\u0947 \u0915\u093e\u0930\u094d\u092f \u0906\u0917\u093e\u0921\u0940 \u092c\u0922\u093e\u0909\u0928\u0915\u094b \u0932\u093e\u0917\u093f \u091c\u093e\u092d\u093e\u0938\u094d\u0915\u0943\u092a\u094d\u091f \u091a\u0932\u093e\u0908\u0926\u093f\u0928\u0941\u0939\u094b\u0938 ", "Preparing search...": "", "Previous topic": "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u0935\u093f\u0937\u092f ", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d ", "Search Page": "\u092a\u093e\u0928\u093e\u092e\u093e \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "Search Results": "\u0916\u094b\u091c\u0947\u0915\u094b \u0928\u0924\u093f\u091c\u093e", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 3cc2a9b056a..4fddc2cff03 100644 Binary files a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 7865806771e..224c0d6d1e4 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -4,14 +4,14 @@ # # Translators: # FIRST AUTHOR , 2011 -# Komiya Takeshi , 2016 +# Takeshi KOMIYA , 2016 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Komiya Takeshi , 2016\n" +"Last-Translator: Takeshi KOMIYA , 2016\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,76 +67,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -630,8 +630,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -640,8 +640,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -788,41 +788,41 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -861,16 +861,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "(in" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -904,238 +904,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "सामान्य अनुसुची" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "अनुसुची" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "पछिल्लो" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "अघिल्लो" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "अनुसुची" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "रीलीज" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Parameters" @@ -1891,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Returns" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Return type" @@ -1909,7 +1909,7 @@ msgid "variable" msgstr "चल" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "फन्क्सन" @@ -1987,7 +1987,7 @@ msgid "Throws" msgstr "Throws" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "कक्षा" @@ -2004,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधी)" @@ -2019,7 +2019,7 @@ msgstr "%s() (कक्षा)" msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" @@ -2033,20 +2033,20 @@ msgstr "Arguments" msgid "%s (module)" msgstr "%s (मडुल)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "विधी" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "attribute" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "मडुल" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2077,7 +2077,7 @@ msgstr "सन्चालक" msgid "object" msgstr "object" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "अपबाद" @@ -2089,92 +2089,92 @@ msgstr "भनाई" msgid "built-in function" msgstr "built-in फन्क्सन" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "चलहरू" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in मडुल %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (in मडुल %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in चल)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in कक्षा)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (कक्षा in %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s कक्षा विधी)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static विधी)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "कक्षा विधी" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "static विधी" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "(deprecated)" @@ -2210,112 +2210,112 @@ msgstr "भूमिका" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "environment variable; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "शब्द-अर्थमा भएको" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "grammar token" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "सन्दर्व सामग्री" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "environment variable" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "कार्यक्रमका बिकल्प" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "मडुल अनुसुची" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "पानामा खोज्नुहोस्" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2396,17 +2396,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2616,12 +2616,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3001,12 +3015,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3206,7 +3220,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "खोज्नुहोस् " @@ -3287,35 +3301,35 @@ msgstr "धेरै ठुलो हुन सक्छ" msgid "Navigation" msgstr "नेभिगेसन " -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "यी डकुमेन्टहरुको बारेमा" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "कपिराइट " -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "यो भन्दा अगाडी %(last_updated)s मा अपडेट भएको" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3360,12 +3374,12 @@ msgid "search" msgstr "खोज्नुहोस्" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "खोजेको नतिजा" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3407,48 +3421,36 @@ msgstr "C API का परिवर्तनहरु " msgid "Other changes" msgstr "अरु परिवर्तनहरु " -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "यो शिर्षकको लागि पर्मालिन्क । " - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "यो अर्थको लागि पर्मालिन्क" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "खोजेको नतिजाहरु लुकाउनुहोस्" -#: sphinx/themes/basic/static/searchtools.js:136 -msgid "Searching" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 -msgid "Preparing search..." +#: sphinx/themes/basic/static/searchtools.js:213 +msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:310 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." +#: sphinx/themes/basic/static/searchtools.js:226 +msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" -msgstr "साइडबर ठुलो बनाउनुहोस्" - -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" msgstr "साइडबर सानो बनाउनुहोस्" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" +msgstr "साइडबर ठुलो बनाउनुहोस्" + #: sphinx/themes/haiku/layout.html:24 msgid "Contents" msgstr "विषयसूची" @@ -3468,25 +3470,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3528,16 +3530,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3548,32 +3550,32 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3595,6 +3597,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "यो अर्थको लागि पर्मालिन्क" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3609,6 +3616,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3629,40 +3641,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "फूट्नोट्स" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index a1ee00c6cc3..bb9aaa21810 100644 Binary files a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index f020d9a0673..aab8954c11c 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -9,14 +9,14 @@ # FIRST AUTHOR , 2008 # Gert van Dijk , 2019 # Jesse Tan, 2017 -# Komiya Takeshi , 2021 +# Takeshi KOMIYA , 2021 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Komiya Takeshi , 2021\n" +"Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.js b/sphinx/locale/pl/LC_MESSAGES/sphinx.js index 32b885d46f6..243b150cbe7 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "Nast\u0119pny temat", "Other changes": "Inne zmiany", "Overview": "Przegl\u0105d", - "Permalink to this definition": "Sta\u0142y odno\u015bnik do tej definicji", - "Permalink to this headline": "Sta\u0142y odno\u015bnik do tego nag\u0142\u00f3wka", "Please activate JavaScript to enable the search\n functionality.": "Aby umo\u017cliwi\u0107 wyszukiwanie, prosz\u0119 w\u0142\u0105czy\u0107 JavaScript.", "Preparing search...": "Inicjalizacja wyszukiwania...", "Previous topic": "Poprzedni temat", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "Szukaj", "Search Page": "Wyszukiwanie", "Search Results": "Wyniki wyszukiwania", - "Search finished, found %s page(s) matching the search query.": "Wyszukiwanie zako\u0144czone. Liczba znalezionych stron pasuj\u0105cych do zapytania: %s.", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "Szukaj po\u015br\u00f3d %(docstitle)s", "Searching": "Wyszukiwanie", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 088eab27283..1094720f771 100644 Binary files a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 0f784e7b5f3..d968b9ee15d 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -5,13 +5,13 @@ # Translators: # m_aciek , 2017-2020 # Michael Gielda , 2014 -# Komiya Takeshi , 2018 +# Takeshi KOMIYA , 2018 # Tawez, 2013-2019 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: m_aciek , 2017-2020\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -69,76 +69,76 @@ msgstr "'setup' podany w conf.py nie jest wywoływalny. Prosimy zmienić jego de msgid "loading translations [%s]... " msgstr "ładowanie tłumaczeń [%s]..." -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "gotowe" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "niedostępne dla wbudowanych wiadomości" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "ładowanie zapakowanego środowiska" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "nie powiodło się: %s" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "Nie wybrano buildera, używamy domyślnego: html" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "udało się" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "zakończono z problemami" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s ostrzeżenie." -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "dyrektywa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do czytania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenie o sprawdzenie i zadeklarowania tego wprost" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do pisania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenia o sprawdzenie i zadeklarowanie tego wprost" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "tworzenie serii %s" @@ -632,8 +632,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "kopiowanie obrazków..." @@ -642,8 +642,8 @@ msgstr "kopiowanie obrazków..." msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "nieprawidłowy css_file: %r, zignorowano" @@ -790,22 +790,22 @@ msgstr "wczytywanie szablonów... " msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "zepsuty odnośnik: %s (%s)" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "Nie znaleziono kotwicy '%s'" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -819,7 +819,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -863,16 +863,16 @@ msgstr "nie znaleziono wartości konfiguracyjnej \"texinfo_documents\"; żadne d msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "wartość konfiguracyjna \"texinfo_documents\" odwołuje się do nieznanego dokumentu %s" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (w " @@ -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:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -906,238 +906,238 @@ msgstr "Pliki XML znajdują się w %(outdir)s." msgid "The pseudo-XML files are in %(outdir)s." msgstr "Pliki pseudo-XML są w %(outdir)s." -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Strony HTML są w %(outdir)s." -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks ogólny" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "dalej" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "wstecz" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "kopiowanie plików do pobrania..." -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "nie można skopiować pliku statycznego %r" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "nie można skopiować dodatkowego pliku %r" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, 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:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "nieprawidłowy js_file: %r, zignorowano" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Podano nieznany math_renderer %r." -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "plik favicon %r nie istnieje" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "%s %s - dokumentacja" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Pliki LaTeX znajdują się w %(outdir)s." -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "nie znaleziono wartości konfiguracyjnej \"latex_documents\"; żadne dokumenty nie zostaną zapisane" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "wartość konfiguracyjna \"latex_documents\" odwołuje się do nieznanego dokumentu %s" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "Wydanie" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Parametry" @@ -1893,12 +1893,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Zwraca" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Typ zwracany" @@ -1911,7 +1911,7 @@ msgid "variable" msgstr "zmienna" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "funkcja" @@ -1989,7 +1989,7 @@ msgid "Throws" msgstr "Wyrzuca" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "klasa" @@ -2006,7 +2006,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -2021,7 +2021,7 @@ msgstr "%s() (klasa)" msgid "%s (global variable or constant)" msgstr "%s (zmienna globalna lub stała)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" @@ -2035,20 +2035,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (moduł)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "atrybut" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "moduł" @@ -2062,7 +2062,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "zduplikowana etykieta równania %s, inne wystąpienie w %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Nieprawidłowy math_eqref_format: %r" @@ -2079,7 +2079,7 @@ msgstr "operator" msgid "object" msgstr "obiekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "wyjątek" @@ -2091,92 +2091,92 @@ msgstr "instrukcja" msgid "built-in function" msgstr "funkcja wbudowana" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "Zmienne" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "Wyrzuca" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Indeks modułów Pythona" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "moduły" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (niezalecane)" @@ -2212,112 +2212,112 @@ msgstr "rola" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "zmienna środowiskowa; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "termin glosariusza" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "symbol gramatyki" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "etykieta odsyłacza" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "zmienna środowiskowa" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "opcja programu" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "Indeks modułów" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Wyszukiwanie" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2398,17 +2398,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2618,12 +2618,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "dyrektywa Graphviz nie może mieć jednocześnie argumentów content i filename" @@ -3003,12 +3017,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3208,7 +3222,7 @@ msgstr "strona" msgid "Table of Contents" msgstr "Spis treści" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Szukaj" @@ -3289,35 +3303,35 @@ msgstr "może być ogromny" msgid "Navigation" msgstr "Nawigacja" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "Szukaj pośród %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "O tych dokumentach" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Ostatnia modyfikacja %(last_updated)s." -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3362,12 +3376,12 @@ msgid "search" msgstr "szukaj" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "Wyniki wyszukiwania" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3409,48 +3423,36 @@ msgstr "Zmiany w C API" msgid "Other changes" msgstr "Inne zmiany" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "Stały odnośnik do tego nagłówka" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "Stały odnośnik do tej definicji" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "Ukryj wyniki wyszukiwania" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "Wyszukiwanie" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "Inicjalizacja wyszukiwania..." -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "Wyszukiwanie zakończone. Liczba znalezionych stron pasujących do zapytania: %s." - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr ", w " -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" -msgstr "Rozwiń pasek boczny" - -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" msgstr "Zwiń pasek boczny" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" +msgstr "Rozwiń pasek boczny" + #: sphinx/themes/haiku/layout.html:24 msgid "Contents" msgstr "Treść" @@ -3470,25 +3472,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3530,16 +3532,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "Nieznany format obrazka: %s..." -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3560,22 +3562,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "błąd odczytu: %s, %s" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "błąd zapisu: %s, %s" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3597,6 +3599,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "Stały odnośnik do tej definicji" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3611,6 +3618,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "Stały odnośnik do tej tabeli" @@ -3631,40 +3643,40 @@ msgstr "Stały odnośnik do tego spisu treści" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "Przypisy" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "%s" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js index c862187cf0a..f549801e339 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "Pr\u00f3ximo t\u00f3pico", "Other changes": "Outras altera\u00e7\u00f5es", "Overview": "Vis\u00e3o geral", - "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", - "Permalink to this headline": "Link permanente para este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor, ativar JavaScript para habilitar a\nfuncionalidade de busca.", "Preparing search...": "Preparando a busca...", "Previous topic": "T\u00f3pico anterior", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "Buscar", "Search Page": "P\u00e1gina de Busca", "Search Results": "Resultados da Busca", - "Search finished, found %s page(s) matching the search query.": "Busca conclu\u00edda. %s p\u00e1gina(s) que atendem a consulta.", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "Pesquisar dentro de %(docstitle)s", "Searching": "Buscando", "Searching for multiple words only shows matches that contain\n all words.": "Pesquisando por v\u00e1rias palavras s\u00f3 mostra correspond\u00eancias\nque cont\u00eam todas as palavras.", diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 2acd04c3b45..ff1de30578d 100644 Binary files a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 779ae0cef30..9cfc6290e71 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -8,12 +8,12 @@ # gilberto dos santos alves , 2015-2016 # Rafael Fontenelle , 2019 # Rafael Fontenelle , 2019-2022 -# Komiya Takeshi , 2016 +# Takeshi KOMIYA , 2016 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Rafael Fontenelle , 2019-2022\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -71,76 +71,76 @@ msgstr "“setup”, conforme definido atualmente em conf.py, não é um invocá msgid "loading translations [%s]... " msgstr "carregando traduções [%s]… " -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "feito" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "não disponível para mensagens internas" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "carregando ambiente com pickle" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "falha: %s" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "Nenhum compilador selecionado, usando padrão: html" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "bem-sucedida" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "finalizada com problemas" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "compilação %s, %s aviso. (com avisos tratados como erros)." -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "compilação %s, %s avisos (com avisos tratados como erros)." -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "compilação %s, %s aviso." -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "compilação %s, %s avisos." -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "compilação %s." -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "classe de nodo %r já está registrada, seus visitantes serão sobrescritos" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "diretiva %r já está registrada, ela será sobrescrita" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "papel %r já está registrado, ele será sobrescrito" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para leitura em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "a extensão %s não é segura para leitura em paralelo" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,12 +161,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para escrita em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "a extensão %s não é segura para escrita em paralelo" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "fazendo serial %s" @@ -634,8 +634,8 @@ msgstr "preparando documentos" msgid "duplicated ToC entry found: %s" msgstr "entrada de tabela de conteúdos duplicada encontrada: %s" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "copiando imagens… " @@ -644,8 +644,8 @@ 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:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "não foi possível copiar arquivo de imagem %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:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, 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:124 +#: sphinx/builders/linkcheck.py:110 #, 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:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "link quebrado: %s (%s)" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "Âncora “%s” não encontrada" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Falha ao compilar regex em linkcheck_allowed_redirects: %r %s" @@ -821,7 +821,7 @@ msgstr "As páginas de manual estão em %(outdir)s." msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "nenhum valor de configuração “man_pages” encontrado; nenhuma página de manual será escrita" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "escrevendo" @@ -865,16 +865,16 @@ msgstr "nenhuma valor de configuração “texinfo_documents” encontrado; nenh msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "o valor da configuração “texinfo_documents” faz referência a documento desconhecido %s" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "processando %s" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "resolvendo referências…" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (em " @@ -892,7 +892,7 @@ msgstr "erro ao escrever o arquivo Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Os arquivos texto estão em %(outdir)s." -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -908,238 +908,238 @@ msgstr "Os arquivos XML estão em %(outdir)s." msgid "The pseudo-XML files are in %(outdir)s." msgstr "Os arquivos pseudo-XML estão em %(outdir)s." -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "arquivo de informações da compilação está quebrado: %r" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "As páginas HTML estão em %(outdir)s." -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format 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:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "próximo" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "gerando índices" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "escrevendo páginas adicionais" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "copiando arquivos baixáveis… " -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, 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:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, 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:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "copiando arquivos estáticos" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, 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:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "copiando arquivos extras" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "não foi possível copiar o arquivo extra %r" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, 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:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, 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:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, 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:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "despejando inventário de objetos" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "despejando índice de pesquisa em %s" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 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:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer desconhecido %r é fornecido." -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, 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:1233 +#: sphinx/builders/html/__init__.py:1244 #, 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:1242 +#: sphinx/builders/html/__init__.py:1253 #, 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:1246 +#: sphinx/builders/html/__init__.py:1257 #, 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:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "o arquivo logo %r não existe" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "o arquivo favicon %r não existe" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "documentação %s %s" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Os arquivos LaTeX estão em %(outdir)s." -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nExecute \"make\" nesse diretório para executá-los com (pdf)latex\n(use \"make latexpdf\" aqui para fazer isso automaticamente)." -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "nenhuma valor da configuração “latex_documents” encontrado; nenhum documento será escrito" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format 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:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Índice" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "Release" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "nenhuma opção Babel conhecida para o idioma %r" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "copiando arquivos de suporte TeX" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "copiando arquivos de suporte TeX…" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "copiando arquivos adicionais" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "Chave configuração desconhecida: latex_elements[%r], ignorado." -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "Opção de tema desconhecida: latex_theme_options[%r], ignorada." @@ -1886,7 +1886,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Parâmetros" @@ -1895,12 +1895,12 @@ msgid "Return values" msgstr "Valores de retorno" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Retorna" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Tipo de retorno" @@ -1913,7 +1913,7 @@ msgid "variable" msgstr "variável" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "função" @@ -1991,7 +1991,7 @@ msgid "Throws" msgstr "Lança" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "classe" @@ -2008,7 +2008,7 @@ msgstr "parâmetro de modelo" msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -2023,7 +2023,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -2037,20 +2037,20 @@ msgstr "Argumentos" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "módulo" @@ -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:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format inválido: %r" @@ -2081,7 +2081,7 @@ msgstr "operador" msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "exceção" @@ -2093,92 +2093,92 @@ msgstr "comando" msgid "built-in function" msgstr "função interna" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "%s (propriedade %s )" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "propriedade" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "descrição duplicada de objeto de %s, outra instância em %s, use :noindex: para um deles" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "mais de um alvo localizado para referência cruzada %r: %s" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2214,112 +2214,112 @@ 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:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "váriavel de ambiente; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "%s opção de linha de comando" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "opção de linha de comando" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "um termo de glossário deve ser precedido por uma linha vazia" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "termos de glossário não devem ser separados por linhas vazias" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "o glossário parece estar mal formatado, confira o recuo" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "Glossário de Termos" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "termo gramatical" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "marca referencial" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "váriavel de ambiente" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "opção do programa" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "Índice do Módulo" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Busca" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "rótulo duplicada %s, outra instância em %s" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, 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:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig está desabilitado. :numref: é ignorado." -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, 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:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "o link não possui legenda: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format inválido: %s (%r)" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format inválido: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "rótulo não definido: %s" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, 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" @@ -2400,17 +2400,17 @@ msgid "" " will be generated" msgstr "toctree contém referência ao documento %r que não possui título: nenhum link será gerado" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "arquivo de imagem não legível: %s" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "arquivo de imagem %s não legível: %s" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "arquivo de download não legível: %s" @@ -2620,12 +2620,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "=================== durações de leitura mais lentas ====================" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "O link codificado %r pode ser substituído por um extlink (tente usar %r)" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "A diretiva de Graphviz não pode ter conteúdo e argumento de nome de arquivo" @@ -3005,12 +3019,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:809 +#: 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:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3210,7 +3224,7 @@ msgstr "página" msgid "Table of Contents" msgstr "Tabela de Conteúdo" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Buscar" @@ -3291,35 +3305,35 @@ msgstr "pode ser enorme" msgid "Navigation" msgstr "Navegação" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "Pesquisar dentro de %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "Sobre esses documentos" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Copyright %(copyright)s." -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Última atualização em %(last_updated)s." -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3364,12 +3378,12 @@ msgid "search" msgstr "buscar" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "Resultados da Busca" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3411,48 +3425,36 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "Link permanente para este título" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "Link permanente para esta definição" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "Esconder Resultados da Busca" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "Buscando" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "Preparando a busca..." -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "Busca concluída. %s página(s) que atendem a consulta." - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr ", em " -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" -msgstr "Expandir painel lateral" - -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" msgstr "Recolher painel lateral" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" +msgstr "Expandir painel lateral" + #: sphinx/themes/haiku/layout.html:24 msgid "Contents" msgstr "Conteúdos" @@ -3472,25 +3474,25 @@ msgstr "Nota de rodapé [%s] não é referenciada." msgid "Footnote [#] is not referenced." msgstr "Nota de rodapé [#] não é referenciada." -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "referências de nota de rodapé inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "referências inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referências de citação inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3532,16 +3534,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:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "caracteres de origem não codificáveis, substituindo por “?”: %r" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "ignorado" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "falhou" @@ -3562,22 +3564,22 @@ msgstr "diretiva ou nome de papel desconhecida(o): %s:%s" msgid "unknown node type: %r" msgstr "tipo de nó desconhecido: %r" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "erro de leitura: %s, %s" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "erro de escrita: %s, %s" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "locale_dir %s não existe" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3599,6 +3601,11 @@ msgstr "exceção ao avaliar apenas a expressão da diretiva: %s" msgid "default role %s not found" msgstr "papel padrão %s não encontrado" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "Link permanente para esta definição" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3613,6 +3620,11 @@ msgstr "Quaisquer IDs não atribuídos ao nó %s" msgid "Permalink to this term" msgstr "Link permanente para este termo" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "Link Permanente para essa tabela" @@ -3633,40 +3645,40 @@ msgstr "Link permanente para esse \"toctree\"" msgid "Could not obtain image size. :scale: option is ignored." msgstr "Não foi possível obter o tamanho da imagem. A opção :scale: foi ignorada." -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "toplevel_sectioning %r desconhecido para a classe %r" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: grande demais, ignorado." -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "título do documento não é um nó único em Text" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "nó de título encontrado não na section, topic, table, admonition ou sidebar" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "tabularcolumns e opção :widths: foram fornecidas. :widths: foi ignorada." -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "a unidade de dimensão %s é inválida. Ignorada." -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "tipo desconhecido de entrada de índice %s encontrado" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index b6544a1887a..966e13a3d13 100644 Binary files a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 0bcca0a233a..80cb8104454 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -4,14 +4,14 @@ # # Translators: # Pedro Algarvio , 2013 -# Komiya Takeshi , 2016 +# Takeshi KOMIYA , 2016 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Komiya Takeshi , 2016\n" +"Last-Translator: Takeshi KOMIYA , 2016\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index 5c5c07f79cf..b52e9035128 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -4,7 +4,7 @@ # # Translators: # Razvan Stefanescu , 2015-2017 -# Komiya Takeshi , 2016 +# Takeshi KOMIYA , 2016 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 810b2d1ae37..5f153fe23e6 100644 Binary files a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index e874cd598dc..07649d9659a 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Il'ya , 2022\n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -813,21 +813,21 @@ msgstr "" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -3365,12 +3365,12 @@ msgid "search" msgstr "искать" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "Результаты поиска" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3436,12 +3436,12 @@ msgstr "Идёт поиск" msgid "Preparing search..." msgstr "Подготовка поиска…" -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Поиск завершён, найдено %s страниц, удовлетворяющих запросу." -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr ", в" @@ -3553,12 +3553,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.js b/sphinx/locale/si/LC_MESSAGES/sphinx.js index ddef3d9f129..b988fdaed92 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "\u0d8a\u0dc5\u0d9f \u0db8\u0dcf\u0dad\u0dd8\u0d9a\u0dcf\u0dc0", "Other changes": "\u0dc0\u0dd9\u0db1\u0dad\u0dca \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8 \u0dc3\u0dd6\u0daf\u0dcf\u0db1\u0db8\u0dca \u0d9a\u0dbb\u0db8\u0dd2\u0db1\u0dca....", "Previous topic": "\u0db4\u0dd9\u0dbb \u0db8\u0dcf\u0dad\u0dd8\u0d9a\u0dcf\u0dc0", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1", "Search Page": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8\u0dca \u0db4\u0dd2\u0da7\u0dd4\u0dc0", "Search Results": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8\u0dca \u0db4\u0dca\u200d\u0dbb\u0dad\u0dd2\u0db5\u0dbd", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "\u0dc3\u0ddc\u0dba\u0db8\u0dd2\u0db1\u0dca...", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index d7b01c7a3a4..8c58ed6ec71 100644 Binary files a/sphinx/locale/si/LC_MESSAGES/sphinx.mo and b/sphinx/locale/si/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 0e9f36cb3d1..c168fd5adf4 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: callkalpa , 2013\n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -66,76 +66,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -629,8 +629,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -639,8 +639,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -860,16 +860,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -903,238 +903,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "ඊළඟ" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "පෙර" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "%s %s ලේඛණය" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "නිකුත් කිරීම" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1881,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "පරාමිතීන්" @@ -1890,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1908,7 +1908,7 @@ msgid "variable" msgstr "විචල්‍යය" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "ක්‍රියාව" @@ -1986,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2003,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2018,7 +2018,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2032,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "දත්ත" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2076,7 +2076,7 @@ msgstr "" msgid "object" msgstr "වස්තුව" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2088,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "විචල්‍ය" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2209,112 +2209,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "සෙවුම් පිටුව" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2395,17 +2395,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2615,12 +2615,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3000,12 +3014,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3205,7 +3219,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "සොයන්න" @@ -3286,35 +3300,35 @@ msgstr "විශාල විය හැක" msgid "Navigation" msgstr "ගමන් කිරීම" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "මෙම ලේඛණ ගැන" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3359,12 +3373,12 @@ msgid "search" msgstr "සොයන්න" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "සෙවුම් ප්‍රතිඵල" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3406,46 +3420,34 @@ msgstr "C API වෙනස්කම්" msgid "Other changes" msgstr "වෙනත් වෙනස්කම්" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "සොයමින්..." -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "සෙවුම සූදානම් කරමින්...." -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3467,25 +3469,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3527,16 +3529,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3557,22 +3559,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3594,6 +3596,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3608,6 +3615,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3628,40 +3640,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 595b72c45c6..72abf9e5968 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -5,7 +5,7 @@ # Translators: # FIRST AUTHOR , 2008 # Slavko , 2013-2019,2021 -# Komiya Takeshi , 2016 +# Takeshi KOMIYA , 2016 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index d937379103e..0dfff947ad2 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Sphinx 4.5.0\n" +"Project-Id-Version: Sphinx 5.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -64,76 +64,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,12 +141,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -154,12 +154,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -628,8 +628,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -638,8 +638,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -769,7 +769,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -792,22 +792,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -821,7 +821,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -865,16 +865,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -892,7 +892,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -908,238 +908,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1898,7 +1898,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1907,12 +1907,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1925,7 +1925,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -2003,7 +2003,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2020,7 +2020,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2035,7 +2035,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2049,20 +2049,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2076,7 +2076,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2093,7 +2093,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2105,92 +2105,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: " "for one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2226,112 +2226,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2412,17 +2412,17 @@ msgid "" "link will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2633,11 +2633,25 @@ msgstr "" msgid "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' " +"and all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one" +" '%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3016,12 +3030,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does " "not contain .rst. Skipped." @@ -3224,7 +3238,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3305,35 +3319,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3378,12 +3392,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words " "are spelled correctly and that you've selected enough categories." @@ -3425,46 +3439,33 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3485,25 +3486,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated:" " {1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3545,16 +3546,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3575,22 +3576,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to " @@ -3612,6 +3613,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3626,6 +3632,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3646,38 +3657,38 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.js b/sphinx/locale/sq/LC_MESSAGES/sphinx.js index 2326e529fa6..cc0dd1120e8 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "Subjekti pasues", "Other changes": "Ndryshime t\u00eb tjera", "Overview": "P\u00ebrmbledhje", - "Permalink to this definition": "Permalidhje p\u00ebr te ky p\u00ebrkufizim", - "Permalink to this headline": "Permalidhje te ky titull", "Please activate JavaScript to enable the search\n functionality.": "Q\u00eb t\u00eb aktivizohet funksioni i k\u00ebrkimit, ju lutemi, aktivizoni\n JavaScript-in.", "Preparing search...": "Po p\u00ebrgatitet k\u00ebrkim...", "Previous topic": "Subjekti i m\u00ebparsh\u00ebm", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "K\u0113rko", "Search Page": "Faqe K\u00ebrkimesh", "Search Results": "P\u00ebrfundime K\u00ebrkimi", - "Search finished, found %s page(s) matching the search query.": "K\u00ebrkimi p\u00ebrfundoi, u gjet\u00ebn %s page(s) me p\u00ebrputhje me shprehjen e k\u00ebrkuar.", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "K\u00ebrkoni brenda %(docstitle)s", "Searching": "K\u00ebrkim", "Searching for multiple words only shows matches that contain\n all words.": "K\u00ebrkimi p\u00ebr disa fjal\u00eb nj\u00ebher\u00ebsh shfaq vet\u00ebm p\u00ebrputhje q\u00eb\n p\u00ebrmbajn\u00eb krejt fjal\u00ebt.", diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 10b88af61cd..fad09d0da43 100644 Binary files a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 2755a1edbed..19ce48cd8c1 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Besnik Bleta , 2021-2022\n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -66,76 +66,76 @@ msgstr "'setup' siç është përcaktuar aktualisht te conf.py s’është funks msgid "loading translations [%s]... " msgstr "po ngarkohen përkthime [%s]… " -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "u bë" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "s’është i passhëm për mesazhe të brendshëm" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "dështoi: %s" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "S’u përzgjodh montues, po përdoret parazgjedhja: html" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "doli me sukses" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "u përfundua me probleme" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "montimi %s, % sinjalizim (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "montimi %s, %s sinjalizime (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s warning." -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "montimi %s, %s sinjalizime." -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "montimi %s." -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r e nyjeve është e regjistruar tashmë, vizitorët e saj do të anashkalohen" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktiva %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "roli %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për lexim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "zgjerimi %s s’është i sigurt për lexim paralel" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për shkrim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "zgjerimi %s s’është i sigurt për shkrim paralel" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -629,8 +629,8 @@ 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:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "po kopjohen figura… " @@ -639,8 +639,8 @@ 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:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "s’kopjohet dot kartelë figure %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:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file e pavlefshme: %r, u shpërfill" @@ -787,41 +787,41 @@ msgstr "po lexohen gjedhe… " msgid "writing message catalogs... " msgstr "po shkruhen katalogë mesazhesh… " -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Shihni për çfarëdo gabimesh te përfundimi më sipër ose te %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "lidhje e dëmtuar: %s (%s)" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "S’u gjet spirancë '%s'" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "S’u arrit të përpilohet shprehje e rregullt te linkcheck_allowed_redirects: %r %s" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Faqet e doracakut gjenden në %(outdir)s." -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "s’u gjet vlerë formësimi \"man_pages\"; s’do të shkruhet ndonjë faqe doracaku" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "po shkruhet" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "vlera e formësimit \"man_pages\" i referohet një dokumenti të panjohur %s" @@ -860,16 +860,16 @@ msgstr "s’u gjet vlerë formësimi \"texinfo_documents\"; s’do të shkruhet msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "vlera e formësimit \"texinfo_documents\" i referohet një dokumenti të panjohur %s" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "po përpunohet %s" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "po shquhen referencat…" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (në " @@ -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:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -903,238 +903,238 @@ msgstr "Kartelat XML gjenden në %(outdir)s." msgid "The pseudo-XML files are in %(outdir)s." msgstr "Kartelat pseudo-XML gjenden në %(outdir)s." -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "kartela e të dhënave të montimit është e dëmtuar: %r" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Faqet HTML gjenden në %(outdir)s." -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "S’u arrit të lexohet kartelë të dhënash montimi: %r" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Tregues i Përgjithshëm" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "tregues" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "pasuesi" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "i mëparshmi" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "po prodhohen tregues" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "po shkruhen faqe shtesë" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "po kopjohen kartela të shkarkueshme… " -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "s’kopjohet dot kartelë e shkarkueshme %r: %s" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, 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:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "po kopjohen kartela statike" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "s’kopjohet dot kartelë statike %r" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "po kopjohen kartela ekstra" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "s’kopjohet dot kartelë ekstra %r" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, 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:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, 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:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, 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:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, 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:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file e pavlefshme: %r, u shpërfill" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 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:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "U dha math_renderer %r i panjohur." -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, 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:1233 +#: sphinx/builders/html/__init__.py:1244 #, 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:1242 +#: sphinx/builders/html/__init__.py:1253 #, 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:1246 +#: sphinx/builders/html/__init__.py:1257 #, 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:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "kartela stemë %r s’ekziston" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "kartela favikonë %r s’ekziston" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "Dokumentim i %s %s" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Kartelat LaTeX gjenden në %(outdir)s." -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nXhironi 'make' te ajo drejtori që të xhirohen këto përmes (pdf)latex\n(që të bëhet kjo automatikisht, përdorni `make latexpdf' këtu)." -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "s’u gjet vlerë formësimi \"texinfo_documents\"; s’do të shkruhet ndonjë dokument" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "vlera e formësimit \"texinfo_documents\" i referohet një dokumenti të panjohur %s" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Tregues" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "Hedhje Në Qarkullim" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "s’ka mundësi Babel të njohur për gjuhën %r" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "po kopjohen kartela mbulimi TeX" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "po kopjohen kartela mbulimi TeX…" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "po kopjohen kartela shtesë" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "Kyç i panjohur formësimi: latex_elements[%r], u shpërfill." -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "Mundësi e panjohur teme: latex_theme_options[%r], u shpërfill." @@ -1881,7 +1881,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Parametra" @@ -1890,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Kthime" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Lloj kthimi" @@ -1908,7 +1908,7 @@ msgid "variable" msgstr "ndryshore" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "funksion" @@ -1986,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "klasë" @@ -2003,7 +2003,7 @@ msgstr "parametër gjedheje" msgid "%s() (built-in function)" msgstr "%s() (funksion i brendshëm)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (metodë %s)" @@ -2018,7 +2018,7 @@ msgstr "%s() (klasë)" msgid "%s (global variable or constant)" msgstr "%s ( ndryshore globale ose konstante)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2032,20 +2032,20 @@ msgstr "Argumente" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "metodë" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "të dhëna" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "modul" @@ -2059,7 +2059,7 @@ msgstr "përshkrim %s i përsëdytur i %s, tjetër %s në %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "etiketë e përsëdytur ekuacioni %s, instancë tjetër te %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format i pavlefshëm: %r" @@ -2076,7 +2076,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "përjashtim" @@ -2088,92 +2088,92 @@ msgstr "deklarim" msgid "built-in function" msgstr "funksion i brendshëm" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "Ndryshore" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (te moduli %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (te moduli %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (ndryshore e brendshme)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (klasë e brendshme)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (klasë te %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metodë klase %s)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "%s (veti %s)" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metodë statike %s)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Tregues Modulesh Python" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Nxjerrë nga përdorimi" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "metodë klase" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "metodë statike" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "veti" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "përshkrim i përsëdytur objekti për %s, instancë tjetër te %s, përdorni :noindex: për një prej tyre" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "për ndërreferencën %r u gjet më shumë se një objektiv: %s" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (nxjerrë nga përdorimi)" @@ -2209,112 +2209,112 @@ msgstr "rol" msgid "duplicate description of %s %s, other instance in %s" msgstr "përshkrim i përsëdytur %s %s, instancë tjetër te %s" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "ndryshore mjedisi; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Përshkrim i keqformuar mundësie %r, duhet të duket si \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" ose \"+opt args\"" -#: sphinx/domains/std.py:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "Mundësi për rresht urdhrash %s" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "mundësi për rresht urdhrash" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "termi i fjalorthit duhet të paraprihet nga një rresht i zbrazët" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "termat e fjalorthit s’duhet të paraprihet nga rreshta të zbrazët" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "fjalorthi duket të jetë i keformatuar, kontrolloni shmangie kryeradhe" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "term fjalorthi" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "etiketë reference" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "ndryshore mjedisi" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "mundësi programi" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "Tregues Modulesh" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Faqe Kërkimesh" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "etiketë %s e përsëdytur, tjetër instancë te %s" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "përshkrim %s i përsëdytur për %s, tjetër instancë te %s" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig është i çaktivizuar. :numref: është shpërfillur." -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "S’u arrit të krijohej një ndërreferencë. S’u caktua ndonjë numër: %s" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "lidhja s’ka titull: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format i pavlefshëm: %s (%r)" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format i pavlefshëm: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "etiketë e papërcaktuar: %s" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "S’u arrit të krijohej një ndërreferencë. S’u gjet titull ose legjendë: %s" @@ -2395,17 +2395,17 @@ msgid "" " will be generated" msgstr "toctree përmban referencë ndaj dokumenti %r që s’ka titull: s’do të prodhohet ndonjë lidhje" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "kartelë figure jo e lexueshme: %s" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "kartelë figure %s jo e lexueshme: %s" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "kartelë shkarkimi jo e lexueshme: %s" @@ -2615,12 +2615,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "=================== kohëzgjatjet më të ngadalta të leximit ===================" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Një direktivë Graphviz s’mund të ketë edhe lëndë, edhe argument emri kartelash" @@ -3000,12 +3014,12 @@ msgstr "s’u arrit të përtypej emri %s" msgid "failed to import object %s" msgstr "s’u arrit të importohej objekti %s" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: s’u gjet kartelë: %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3205,7 +3219,7 @@ msgstr "faqe" msgid "Table of Contents" msgstr "Tryeza e Lëndës" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Kērko" @@ -3286,35 +3300,35 @@ msgstr "mund të jetë i stërmadh" msgid "Navigation" msgstr "Lëvizje" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "Kërkoni brenda %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "Mbi këto dokumente" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "Të drejta kopjimi" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Të drejta kopjimi %(copyright)s." -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "© Të drejta kopjimi %(copyright)s." -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Përditësuar së fundi më %(last_updated)s." -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3359,12 +3373,12 @@ msgid "search" msgstr "kërko" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "Përfundime Kërkimi" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3406,48 +3420,36 @@ msgstr "Ndryshime API C" msgid "Other changes" msgstr "Ndryshime të tjera" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "Permalidhje te ky titull" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "Permalidhje për te ky përkufizim" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "Fshih Përputhje Kërkimi" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "Kërkim" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "Po përgatitet kërkim..." -#: sphinx/themes/basic/static/searchtools.js:310 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "Kërkimi përfundoi, u gjetën %s page(s) me përputhje me shprehjen e kërkuar." - -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr ", në " -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" -msgstr "Zgjeroje anështyllën" - -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" msgstr "Tkurre anështyllën" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" +msgstr "Zgjeroje anështyllën" + #: sphinx/themes/haiku/layout.html:24 msgid "Contents" msgstr "Lëndë" @@ -3467,25 +3469,25 @@ msgstr "Poshtëshënimi [%s] s’është në referencë." msgid "Footnote [#] is not referenced." msgstr "Poshtëshënimi [#] s’është në referencë." -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "referenca pa njëtrajtësi, te fundfaqe në mesazhin e përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "referenca pa njëtrajtësi, te mesazhi i përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referenca citimi pa njëtrajtësi, te fundfaqe në mesazhin e përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3527,16 +3529,16 @@ msgstr "S’u soll dot figurë e largët: %s [%s]" msgid "Unknown image format: %s..." msgstr "Format i panjohur figure: %s…" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "shenja burimi të padeshifrueshme, po zëvendësohen me \"?\": %r" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "e anashkaluar" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "e dështuar" @@ -3547,32 +3549,32 @@ msgid "" "not in the domain." 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:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "emër direktive ose roli të panjohur: %s:%s" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "lloj i panjohur nyjeje: %r" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "gabim leximi: %s, %s" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "gabim shkrimi: %s, %s" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "locale_dir %s s’ekziston" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3594,6 +3596,11 @@ msgstr "përjashtim teksa vlerësohej vetëm shprehje direktive: %s" msgid "default role %s not found" msgstr "s’u gjet rol parazgjedhje %s" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "Permalidhje për te ky përkufizim" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3608,6 +3615,11 @@ msgstr "Çfarëdo ID-sh jo të përshoqëruara për nyjën %s" msgid "Permalink to this term" msgstr "Permalidhje për te ky term" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "Permalidhje te kjo tabelë" @@ -3628,40 +3640,40 @@ msgstr "Permalidhje te kjo toctree" msgid "Could not obtain image size. :scale: option is ignored." msgstr "S’u mor dot madhësi figure. Mundësia :scale: u shpërfill." -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "toplevel_sectioning %r i panjohur për klasën %r" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: shumë i madh, u shpërfill." -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "titulli i dokumentit s’është nyje njëshe Teksti" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "u has nyje titulli jo në ndarje, temë, tabelë, paralajmërim ose anështyllë" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "Poshtëshënime" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "janë dhënë që të dyja mundësitë, “tabularcolumns” dhe “:widths:”. shpërfillet :widths:." -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "njësia e përmasave %s është e pavlefshme. U shpërfill." -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "u gjet lloj i panjohur %s zërash treguesi" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.js b/sphinx/locale/sr/LC_MESSAGES/sphinx.js index 9822ada54db..6a017ce4956 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "\u0421\u043b\u0435\u0434\u0435\u045b\u0438 \u043e\u0434\u0435\u0459\u0430\u043a", "Other changes": "\u0414\u0440\u0443\u0433\u0435 \u0438\u0437\u043c\u0435\u043d\u0435", "Overview": "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "\u041f\u0440\u0438\u043f\u0440\u0435\u043c\u0430 \u043f\u0440\u0435\u0442\u0440\u0430\u0433\u0435...", "Previous topic": "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0438 \u043e\u0434\u0435\u0459\u0430\u043a", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "\u041f\u0440\u0435\u0442\u0440\u0430\u0433\u0430", "Search Page": "", "Search Results": "\u0420\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0438 \u043f\u0440\u0435\u0442\u0440\u0430\u0433\u0435", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "\u041f\u0440\u0435\u0442\u0440\u0430\u0436\u0443\u0458\u0435 \u0441\u0435", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 80330e5fb43..30431eb28b6 100644 Binary files a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index be37a0dadae..04ef0be7321 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vladimir Milovanović , 2020\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -67,76 +67,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "учитавање превода [%s]... " -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "готово" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "Неуспешно: %s" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "са грешкама" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -630,8 +630,8 @@ msgstr "припремање докумената" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "пребацивање слика... " @@ -640,8 +640,8 @@ msgstr "пребацивање слика... " msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -788,41 +788,41 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -861,16 +861,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (у " @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -904,238 +904,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "индекс" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "напред" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "назад" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "документација %s %s" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTeX датотеке су у %(outdir)s." -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nПокрените 'make' у том директоријуму да бисте их пропустили кроз (pdf)latex\n(или употребите `make latexpdf' овде да се то одради аутоматски)." -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Индекс" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "Издање" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Параметри" @@ -1891,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Резултат" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Тип резултата" @@ -1909,7 +1909,7 @@ msgid "variable" msgstr "променљива" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "функција" @@ -1987,7 +1987,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "класа" @@ -2004,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (уграђена функција)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метода)" @@ -2019,7 +2019,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "%s (глобална променљива или константа)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -2033,20 +2033,20 @@ msgstr "Аргументи" msgid "%s (module)" msgstr "%s (модул)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "метода" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "атрибут" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "модул" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2077,7 +2077,7 @@ msgstr "оператор" msgid "object" msgstr "објекат" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "изузетак" @@ -2089,92 +2089,92 @@ msgstr "наредба" msgid "built-in function" msgstr "уграђена функција" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "Променљиве" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (у модулу %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (у модулу %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (уграђена променљива)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (уграђена класа)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (класа у %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метода класе %s)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статичка метода %s)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Застарело" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "метода класе" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "статичка метода" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2210,112 +2210,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "променљива окружења; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "документ" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2396,17 +2396,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2616,12 +2616,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3001,12 +3015,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3206,7 +3220,7 @@ msgstr "страна" msgid "Table of Contents" msgstr "Садржај" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Претрага" @@ -3287,35 +3301,35 @@ msgstr "" msgid "Navigation" msgstr "Навигација" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3360,12 +3374,12 @@ msgid "search" msgstr "тражи" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "Резултати претраге" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3407,46 +3421,34 @@ msgstr "" msgid "Other changes" msgstr "Друге измене" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "Претражује се" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "Припрема претраге..." -#: sphinx/themes/basic/static/searchtools.js:310 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr ", у " -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3468,25 +3470,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3528,16 +3530,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3548,32 +3550,32 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3595,6 +3597,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3609,6 +3616,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3629,40 +3641,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js index 6110fc9b800..0a124a9d406 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 2b3a3b61af4..3533e0b811c 100644 Binary files a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 9eeb58cbd6a..b9d2f33a672 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -65,76 +65,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -628,8 +628,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -638,8 +638,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -815,7 +815,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -859,16 +859,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -902,238 +902,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1880,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1889,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1907,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1985,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2002,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2017,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2031,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2075,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2087,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2208,112 +2208,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2394,17 +2394,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2614,12 +2614,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2999,12 +3013,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3204,7 +3218,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3285,35 +3299,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3358,12 +3372,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3405,46 +3419,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3466,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3526,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3556,22 +3558,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3593,6 +3595,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3607,6 +3614,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3627,40 +3639,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.js b/sphinx/locale/sv/LC_MESSAGES/sphinx.js index ddf30406c93..7b2dbfd4d2a 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "N\u00e4sta titel", "Other changes": "\u00d6vriga f\u00f6r\u00e4ndringar", "Overview": "\u00d6versikt", - "Permalink to this definition": "Permalink till denna definition", - "Permalink to this headline": "Permalink till denna rubrik", "Please activate JavaScript to enable the search\n functionality.": "Var god aktivera JavaScript f\u00f6r s\u00f6kfunktionalitet.", "Preparing search...": "", "Previous topic": "F\u00f6reg\u00e5ende titel", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "S\u00f6k", "Search Page": "S\u00f6ksida", "Search Results": "S\u00f6kresultat", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "S\u00f6k bland %(docstitle)s", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 0eecee833ac..b0a664dbb52 100644 Binary files a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 612d9f54c0d..295502338c2 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -65,76 +65,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -628,8 +628,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -638,8 +638,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -815,7 +815,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -859,16 +859,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "(i " @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -902,238 +902,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Huvudindex" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "nästa" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "föregående" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "Utgåva" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1880,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Parametrar" @@ -1889,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Returnerar" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Returtyp" @@ -1907,7 +1907,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "funktion" @@ -1985,7 +1985,7 @@ msgid "Throws" msgstr "Kastar" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "klass" @@ -2002,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" @@ -2017,7 +2017,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -2031,20 +2031,20 @@ msgstr "Argument" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "metod" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "attribut" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "modul" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2075,7 +2075,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "undantag" @@ -2087,92 +2087,92 @@ msgstr "uttryck" msgid "built-in function" msgstr "inbyggda funktioner" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "Väcker" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2208,112 +2208,112 @@ msgstr "roll" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "miljövariabel; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "ordlista" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "grammatisk token" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "referensetikett" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "miljövariabel" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "programväxel" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Söksida" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2394,17 +2394,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2614,12 +2614,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2999,12 +3013,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3204,7 +3218,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Sök" @@ -3285,35 +3299,35 @@ msgstr "kan bli stort" msgid "Navigation" msgstr "Navigation" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "Sök bland %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "Om dessa dokument" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Senast uppdaterad %(last_updated)s." -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3358,12 +3372,12 @@ msgid "search" msgstr "sök" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "Sökresultat" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3405,48 +3419,36 @@ msgstr "Förändringar i C-API" msgid "Other changes" msgstr "Övriga förändringar" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "Permalink till denna rubrik" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "Permalink till denna definition" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "Dölj Sökresultat" -#: sphinx/themes/basic/static/searchtools.js:136 -msgid "Searching" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 -msgid "Preparing search..." +#: sphinx/themes/basic/static/searchtools.js:213 +msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." +#: sphinx/themes/basic/static/searchtools.js:226 +msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" -msgstr "Expandera sidolist" - -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" msgstr "Dölj sidolist" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" +msgstr "Expandera sidolist" + #: sphinx/themes/haiku/layout.html:24 msgid "Contents" msgstr "Innehåll" @@ -3466,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3526,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3556,22 +3558,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3593,6 +3595,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "Permalink till denna definition" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3607,6 +3614,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3627,40 +3639,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.js b/sphinx/locale/ta/LC_MESSAGES/sphinx.js index 087b2432027..40718dd812f 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index e94326f1a72..cd058dd01a5 100644 Binary files a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index dea3a52f2eb..fa8975fbd8e 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -66,76 +66,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -629,8 +629,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -639,8 +639,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -860,16 +860,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -903,238 +903,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "அடுத்த" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1881,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1890,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1908,7 +1908,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1986,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2003,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2018,7 +2018,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2032,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2076,7 +2076,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2088,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2209,112 +2209,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2395,17 +2395,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2615,12 +2615,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3000,12 +3014,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3205,7 +3219,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3286,35 +3300,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3359,12 +3373,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3406,46 +3420,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3467,25 +3469,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3527,16 +3529,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3557,22 +3559,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3594,6 +3596,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3608,6 +3615,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3628,40 +3640,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.js b/sphinx/locale/te/LC_MESSAGES/sphinx.js index e1a5a89eb6d..4238621a75c 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 85649fc685f..ddbc47aca80 100644 Binary files a/sphinx/locale/te/LC_MESSAGES/sphinx.mo and b/sphinx/locale/te/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index cf1bab8c75f..a048c6c64e5 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -65,76 +65,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -628,8 +628,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -638,8 +638,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -815,7 +815,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -859,16 +859,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -902,238 +902,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1880,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1889,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1907,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1985,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2002,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2017,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2031,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2075,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2087,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2208,112 +2208,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2394,17 +2394,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2614,12 +2614,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2999,12 +3013,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3204,7 +3218,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3285,35 +3299,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3358,12 +3372,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3405,46 +3419,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3466,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3526,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3556,22 +3558,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3593,6 +3595,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3607,6 +3614,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3627,40 +3639,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index d456ba9c703..9f79c40fa6a 100644 Binary files a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 59588a2634e..9535389a931 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: BouRock, 2020\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -810,21 +810,21 @@ msgstr "Bağlayıcı '%s' bulunamadı" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Rehber sayfaları %(outdir)s içinde." -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "hiçbir \"man_pages\" yapılandırma değeri bulunamadı; hiçbir rehber sayfası yazılmayacaktır" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "yazılıyor" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" yapılandırma değeri bilinmeyen %s belgesine başvurur" @@ -3362,12 +3362,12 @@ msgid "search" msgstr "ara" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "Arama Sonuçları" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3433,12 +3433,12 @@ msgstr "Aranıyor" msgid "Preparing search..." msgstr "Aramaya hazırlanıyor..." -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Arama tamamlandı. Sorguyu içeren %s sayfa bulundu." -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr ", şunun içinde:" @@ -3550,12 +3550,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 58b8c933c1c..9c88ecb948c 100644 Binary files a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo and b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 9fc8ca6e4f2..26d01e899bf 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Petro Sasnyk , 2009\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -807,21 +807,21 @@ msgstr "" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -3359,12 +3359,12 @@ msgid "search" msgstr "пошук" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "Результати пошуку" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3430,12 +3430,12 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr "" @@ -3547,12 +3547,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.js b/sphinx/locale/vi/LC_MESSAGES/sphinx.js index c08b2bac5dc..4520224490e 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "Ch\u1ee7 \u0111\u1ec1 ti\u1ebfp", "Other changes": "", "Overview": "T\u1ed5ng quan", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "H\u00e3y b\u1eadt JavaScript \u0111\u1ec3 d\u00f9ng t\u00ednh n\u0103ng\nt\u00ecm ki\u1ebfm.", "Preparing search...": "", "Previous topic": "Ch\u1ee7 \u0111\u1ec1 tr\u01b0\u1edbc", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "T\u00ecm Ki\u1ebfm", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "T\u00ecm ki\u1ebfm trong %(docstitle)s", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index f1e1ec05633..d946f388478 100644 Binary files a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 06fa768caba..911fc3f7234 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hoat Le Van , 2014\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -66,76 +66,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -629,8 +629,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -639,8 +639,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -860,16 +860,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "(trong" @@ -887,7 +887,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -903,238 +903,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d/%m/%Y" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Chỉ mục chung" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "chỉ mục" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "xem tiếp" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "xem lại" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "Tài liệu %s %s" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1881,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "Tham số" @@ -1890,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "Trả về" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "Kiểu trả về" @@ -1908,7 +1908,7 @@ msgid "variable" msgstr "biến" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "hàm" @@ -1986,7 +1986,7 @@ msgid "Throws" msgstr "Ném" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "lớp" @@ -2003,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (hàm dựng sẵn)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (phương thức %s)" @@ -2018,7 +2018,7 @@ msgstr "%s() (lớp)" msgid "%s (global variable or constant)" msgstr "%s (biến toàn cục hoặc hằng số)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (thuộc tính %s)" @@ -2032,20 +2032,20 @@ msgstr "Đối số" msgid "%s (module)" msgstr "%s (mô-đun)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "phương thức" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "dữ liệu" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "thuộc tính" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "mô-đun" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2076,7 +2076,7 @@ msgstr "toán tử" msgid "object" msgstr "đối tượng" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "ngoại lệ" @@ -2088,92 +2088,92 @@ msgstr "câu lệnh" msgid "built-in function" msgstr "hàm dựng sẵn" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "Các biến" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "Đưa ra" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (trong mô-đun %s)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (trong mô-đun %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (biến dựng sẵn)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (lớp dựng sẵn)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (lớp trong %s)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (phương thức lớp %s)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (phương thức tĩnh %s)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Chỉ Mục Mô-đun Python" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "các mô-đun" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Sắp loại bỏ" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "phương thức lớp" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "phương thức tĩnh" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "(sắp loại bỏ)" @@ -2209,112 +2209,112 @@ msgstr "vai trò" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "các biến môi trường; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "chú giải thuật ngữ" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2395,17 +2395,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2615,12 +2615,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3000,12 +3014,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3205,7 +3219,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "Tìm Kiếm" @@ -3286,35 +3300,35 @@ msgstr "có thể rất nhiều" msgid "Navigation" msgstr "Điều hướng" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "Tìm kiếm trong %(docstitle)s" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "Về các tài liệu này" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "Bản quyền" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Cập nhật mới nhất vào %(last_updated)s." -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3359,12 +3373,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3406,46 +3420,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3467,25 +3469,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3527,16 +3529,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3557,22 +3559,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3594,6 +3596,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3608,6 +3615,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3628,40 +3640,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index a7fc14be9e1..d8b9f53f1a6 100644 Binary files a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo and b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index f2745111cc4..430e2f9cc3d 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" @@ -806,21 +806,21 @@ msgstr "" msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -3358,12 +3358,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:302 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:304 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3429,12 +3429,12 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:310 +#: sphinx/themes/basic/static/searchtools.js:306 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:361 msgid ", in " msgstr "" @@ -3546,12 +3546,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 663b8739545..5d7a7c499fa 100644 Binary files a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index da9d648ad91..f3a12b872ed 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -15,7 +15,7 @@ # Lu , 2022 # Nomaka , 2018 # Ryekee Zhong , 2013 -# Komiya Takeshi , 2019,2021 +# Takeshi KOMIYA , 2019,2021-2022 # Tower Joo, 2009 # wendi cao <651645601@qq.com>, 2020 # Yinian Chin , 2013,2018,2020 @@ -26,7 +26,7 @@ msgstr "" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-03-27 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Lu , 2022\n" +"Last-Translator: Takeshi KOMIYA , 2019,2021-2022\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" @@ -2944,7 +2944,7 @@ msgstr "基类:%s" #: sphinx/ext/autodoc/__init__.py:1884 #, python-format msgid "alias of %s" -msgstr "%s的别名" +msgstr "%s 的别名" #: sphinx/ext/autodoc/__init__.py:1930 #, python-format diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js index 14068a42400..683c55a1c86 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index cdb7b8b95a3..91c58037328 100644 Binary files a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 0caa5313a91..a6e5f520cd5 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-20 00:16+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" @@ -65,76 +65,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -628,8 +628,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -638,8 +638,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,41 +786,41 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:30 +#: sphinx/builders/manpage.py:29 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:36 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:48 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:59 +#: sphinx/builders/manpage.py:56 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" @@ -859,16 +859,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -902,238 +902,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1880,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1889,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1907,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1985,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2002,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2017,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2031,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2075,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2087,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2208,112 +2208,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2394,17 +2394,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2614,12 +2614,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2999,12 +3013,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3204,7 +3218,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3285,35 +3299,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3358,12 +3372,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:306 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:308 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3405,46 +3419,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:310 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:365 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3466,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3526,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3546,32 +3548,32 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:225 +#: sphinx/util/docutils.py:249 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:515 +#: sphinx/util/docutils.py:539 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3593,6 +3595,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3607,6 +3614,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3627,40 +3639,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js index c258dbb90cc..6986bdd7cfc 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "", "Other changes": "", "Overview": "", - "Permalink to this definition": "", - "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "", "Search Page": "", "Search Results": "", - "Search finished, found %s page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index 9bfc0323fb7..7e86faf4cf0 100644 Binary files a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index f2484bebb9a..5bb98af5254 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" @@ -65,76 +65,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "" @@ -628,8 +628,8 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "" @@ -638,8 +638,8 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "" @@ -763,7 +763,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -815,7 +815,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "" @@ -859,16 +859,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr "" @@ -886,7 +886,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -902,238 +902,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1880,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "" @@ -1889,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "" @@ -1907,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1985,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -2002,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2017,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2031,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2075,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2087,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2208,112 +2208,112 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2394,17 +2394,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2614,12 +2614,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2999,12 +3013,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3204,7 +3218,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "" @@ -3285,35 +3299,35 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3358,12 +3372,12 @@ msgid "search" msgstr "" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3405,46 +3419,34 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" +#: sphinx/themes/basic/static/doctools.js:155 +msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/doctools.js:236 -msgid "Hide Search Matches" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 +msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 -msgid "Collapse sidebar" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" msgstr "" #: sphinx/themes/haiku/layout.html:24 @@ -3466,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3526,16 +3528,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "" @@ -3556,22 +3558,22 @@ msgstr "" msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3593,6 +3595,11 @@ msgstr "" msgid "default role %s not found" msgstr "" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3607,6 +3614,11 @@ msgstr "" msgid "Permalink to this term" msgstr "" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "" @@ -3627,40 +3639,40 @@ msgstr "" msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js index 63cb6ff4c37..c2ac4f8bb3f 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js @@ -30,8 +30,6 @@ Documentation.addTranslations({ "Next topic": "\u4e0b\u500b\u4e3b\u984c", "Other changes": "\u5176\u4ed6\u8b8a\u66f4", "Overview": "\u6982\u8981", - "Permalink to this definition": "\u672c\u5b9a\u7fa9\u7684\u6c38\u4e45\u9023\u7d50", - "Permalink to this headline": "\u672c\u6a19\u984c\u7684\u6c38\u4e45\u9023\u7d50", "Please activate JavaScript to enable the search\n functionality.": "\u8acb\u555f\u7528 Javascript \u4ee5\u958b\u555f\u641c\u5c0b\u529f\u80fd\u3002", "Preparing search...": "\u6e96\u5099\u641c\u5c0b\u4e2d\u2026", "Previous topic": "\u4e0a\u500b\u4e3b\u984c", @@ -39,7 +37,7 @@ Documentation.addTranslations({ "Search": "\u641c\u5c0b", "Search Page": "\u641c\u5c0b\u9801\u9762", "Search Results": "\u641c\u5c0b\u7d50\u679c", - "Search finished, found %s page(s) matching the search query.": "\u641c\u5c0b\u5b8c\u6210\uff0c\u5171\u627e\u5230 %s \u9801\u9762\u7b26\u5408\u641c\u5c0b\u689d\u4ef6\u3002", + "Search finished, found ${resultCount} page(s) matching the search query.": "", "Search within %(docstitle)s": "\u5728 %(docstitle)s \u4e2d\u641c\u5c0b", "Searching": "\u641c\u5c0b\u4e2d", "Searching for multiple words only shows matches that contain\n all words.": "\u641c\u5c0b\u591a\u500b\u95dc\u9375\u5b57\u6642\uff0c\u53ea\u6703\u986f\u793a\u5305\u542b\u6240\u6709\u95dc\u9375\u5b57\u7684\u7d50\u679c\u3002", diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index ec0c6f30d80..bd83992267b 100644 Binary files a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 59d8df09f47..4463cf07109 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-03-27 00:18+0000\n" +"POT-Creation-Date: 2022-04-03 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Steven Hsu , 2021\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -73,76 +73,76 @@ msgstr "目前在 conf.py 裡定義的 'setup' 並非一個 Python 的可呼叫 msgid "loading translations [%s]... " msgstr "正在載入翻譯 [%s]..." -#: sphinx/application.py:283 sphinx/util/__init__.py:532 +#: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" msgstr "完成" -#: sphinx/application.py:285 +#: sphinx/application.py:284 msgid "not available for built-in messages" msgstr "不是有效的內建訊息" -#: sphinx/application.py:294 +#: sphinx/application.py:293 msgid "loading pickled environment" msgstr "正在載入已 pickle 的環境" -#: sphinx/application.py:299 +#: sphinx/application.py:298 #, python-format msgid "failed: %s" msgstr "失敗:%s" -#: sphinx/application.py:307 +#: sphinx/application.py:306 msgid "No builder selected, using default: html" msgstr "沒有指定 builder,使用預設:html" -#: sphinx/application.py:335 +#: sphinx/application.py:334 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:336 +#: sphinx/application.py:335 msgid "finished with problems" msgstr "完成但有問題" -#: sphinx/application.py:340 +#: sphinx/application.py:339 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "建立 %s,%s 警告(警告被視為錯誤)。" -#: sphinx/application.py:342 +#: sphinx/application.py:341 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "建立 %s,%s 警告(警告被視為錯誤)。" -#: sphinx/application.py:345 +#: sphinx/application.py:344 #, python-format msgid "build %s, %s warning." msgstr "建立 %s,%s 警告。" -#: sphinx/application.py:347 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warnings." msgstr "建立 %s,%s 警告。" -#: sphinx/application.py:351 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "建立 %s。" -#: sphinx/application.py:581 +#: sphinx/application.py:580 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "node class %r 已經被註冊,它的訪客將會被覆寫" -#: sphinx/application.py:659 +#: sphinx/application.py:658 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "指令 %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:680 sphinx/application.py:701 +#: sphinx/application.py:679 sphinx/application.py:700 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "role %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:1249 +#: sphinx/application.py:1248 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行讀取是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1253 +#: sphinx/application.py:1252 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 擴充套件對於平行讀取是不安全的" -#: sphinx/application.py:1256 +#: sphinx/application.py:1255 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +163,12 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行寫入是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1260 +#: sphinx/application.py:1259 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 擴充套件對於平行寫入是不安全的" -#: sphinx/application.py:1268 sphinx/application.py:1272 +#: sphinx/application.py:1267 sphinx/application.py:1271 #, python-format msgid "doing serial %s" msgstr "執行串列 %s" @@ -636,8 +636,8 @@ msgstr "正在準備文件" msgid "duplicated ToC entry found: %s" msgstr "找到了重複的 ToC 項目: %s" -#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:723 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:168 +#: sphinx/builders/_epub_base.py:397 sphinx/builders/html/__init__.py:735 +#: sphinx/builders/latex/__init__.py:405 sphinx/builders/texinfo.py:168 msgid "copying images... " msgstr "正在複製圖片..." @@ -646,8 +646,8 @@ msgstr "正在複製圖片..." msgid "cannot read image file %r: copying it instead" msgstr "無法讀取圖片檔 %r: 正在複製它做為替代" -#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:731 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:178 +#: sphinx/builders/_epub_base.py:410 sphinx/builders/html/__init__.py:743 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:178 #, python-format msgid "cannot copy image file %r: %s" msgstr "無法複製圖片檔 %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:229 sphinx/builders/html/__init__.py:1114 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1125 #, python-format msgid "invalid css_file: %r, ignored" msgstr "無效的 css_file: %r, 已略過" @@ -794,22 +794,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:124 +#: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:262 +#: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:461 +#: sphinx/builders/linkcheck.py:320 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:706 +#: sphinx/builders/linkcheck.py:551 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -823,7 +823,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/manpage.py:45 +#: sphinx/builders/latex/__init__.py:287 sphinx/builders/manpage.py:45 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:101 msgid "writing" msgstr "編寫中" @@ -867,16 +867,16 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:273 sphinx/builders/texinfo.py:97 +#: sphinx/builders/latex/__init__.py:269 sphinx/builders/texinfo.py:97 #, python-format msgid "processing %s" msgstr "正在處理 %s" -#: sphinx/builders/latex/__init__.py:344 sphinx/builders/texinfo.py:144 +#: sphinx/builders/latex/__init__.py:340 sphinx/builders/texinfo.py:144 msgid "resolving references..." msgstr "正在解析參照..." -#: sphinx/builders/latex/__init__.py:354 sphinx/builders/texinfo.py:153 +#: sphinx/builders/latex/__init__.py:350 sphinx/builders/texinfo.py:153 msgid " (in " msgstr " (於 " @@ -894,7 +894,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1067 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1078 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -910,238 +910,238 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:137 +#: sphinx/builders/html/__init__.py:148 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:169 +#: sphinx/builders/html/__init__.py:180 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:367 +#: sphinx/builders/html/__init__.py:381 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:461 sphinx/builders/latex/__init__.py:179 +#: sphinx/builders/html/__init__.py:473 sphinx/builders/latex/__init__.py:176 #: sphinx/transforms/__init__.py:109 sphinx/writers/manpage.py:94 -#: sphinx/writers/texinfo.py:226 +#: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html/__init__.py:480 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:492 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "總索引" -#: sphinx/builders/html/__init__.py:480 +#: sphinx/builders/html/__init__.py:492 msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:544 +#: sphinx/builders/html/__init__.py:556 msgid "next" msgstr "下一頁" -#: sphinx/builders/html/__init__.py:553 +#: sphinx/builders/html/__init__.py:565 msgid "previous" msgstr "上一頁" -#: sphinx/builders/html/__init__.py:647 +#: sphinx/builders/html/__init__.py:659 msgid "generating indices" msgstr "正在產生索引" -#: sphinx/builders/html/__init__.py:662 +#: sphinx/builders/html/__init__.py:674 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:741 +#: sphinx/builders/html/__init__.py:753 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:749 +#: sphinx/builders/html/__init__.py:761 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:781 sphinx/builders/html/__init__.py:793 +#: sphinx/builders/html/__init__.py:792 sphinx/builders/html/__init__.py:804 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:814 +#: sphinx/builders/html/__init__.py:825 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:835 +#: sphinx/builders/html/__init__.py:846 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:841 +#: sphinx/builders/html/__init__.py:852 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:848 +#: sphinx/builders/html/__init__.py:859 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:896 +#: sphinx/builders/html/__init__.py:907 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:957 +#: sphinx/builders/html/__init__.py:968 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1050 +#: sphinx/builders/html/__init__.py:1061 #, 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:1055 +#: sphinx/builders/html/__init__.py:1066 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1084 +#: sphinx/builders/html/__init__.py:1095 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1089 +#: sphinx/builders/html/__init__.py:1100 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1131 +#: sphinx/builders/html/__init__.py:1142 #, python-format msgid "invalid js_file: %r, ignored" msgstr "無效的 js_file: %r, 已略過" -#: sphinx/builders/html/__init__.py:1218 +#: sphinx/builders/html/__init__.py:1229 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1221 +#: sphinx/builders/html/__init__.py:1232 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1240 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1233 +#: sphinx/builders/html/__init__.py:1244 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1246 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1255 sphinx/builders/latex/__init__.py:425 +#: sphinx/builders/html/__init__.py:1266 sphinx/builders/latex/__init__.py:417 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1275 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1295 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:1310 +#: sphinx/builders/html/__init__.py:1321 #, python-format msgid "%s %s documentation" msgstr "%s %s 說明文件" -#: sphinx/builders/latex/__init__.py:106 +#: sphinx/builders/latex/__init__.py:104 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:108 +#: sphinx/builders/latex/__init__.py:106 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "" -#: sphinx/builders/latex/__init__.py:144 +#: sphinx/builders/latex/__init__.py:142 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:186 sphinx/domains/std.py:588 +#: sphinx/builders/latex/__init__.py:183 sphinx/domains/std.py:586 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:491 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:148 +#: sphinx/writers/texinfo.py:487 msgid "Index" msgstr "索引" -#: sphinx/builders/latex/__init__.py:189 sphinx/templates/latex/latex.tex_t:82 +#: sphinx/builders/latex/__init__.py:186 sphinx/templates/latex/latex.tex_t:82 msgid "Release" msgstr "發佈" -#: sphinx/builders/latex/__init__.py:203 sphinx/writers/latex.py:376 +#: sphinx/builders/latex/__init__.py:200 sphinx/writers/latex.py:341 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:371 +#: sphinx/builders/latex/__init__.py:367 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:391 +#: sphinx/builders/latex/__init__.py:383 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:404 +#: sphinx/builders/latex/__init__.py:396 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:460 +#: sphinx/builders/latex/__init__.py:440 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:468 +#: sphinx/builders/latex/__init__.py:448 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1888,7 +1888,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3344 sphinx/domains/cpp.py:7294 -#: sphinx/domains/python.py:437 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 msgid "Parameters" msgstr "參數" @@ -1897,12 +1897,12 @@ msgid "Return values" msgstr "回傳值" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7303 -#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:449 +#: sphinx/domains/javascript.py:223 sphinx/domains/python.py:445 msgid "Returns" msgstr "回傳" #: sphinx/domains/c.py:3352 sphinx/domains/javascript.py:225 -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:447 msgid "Return type" msgstr "回傳型別" @@ -1915,7 +1915,7 @@ msgid "variable" msgstr "變數" #: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7707 -#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1195 +#: sphinx/domains/javascript.py:332 sphinx/domains/python.py:1168 msgid "function" msgstr "函式" @@ -1993,7 +1993,7 @@ msgid "Throws" msgstr "拋出" #: sphinx/domains/cpp.py:7705 sphinx/domains/javascript.py:334 -#: sphinx/domains/python.py:1197 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "類別" @@ -2010,7 +2010,7 @@ msgstr "模板參數" msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:834 +#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:830 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 的方法)" @@ -2025,7 +2025,7 @@ msgstr "%s() (類別)" msgid "%s (global variable or constant)" msgstr "%s (全域變數或常數)" -#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:919 +#: sphinx/domains/javascript.py:145 sphinx/domains/python.py:915 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 的屬性)" @@ -2039,20 +2039,20 @@ msgstr "引數" msgid "%s (module)" msgstr "%s (模組)" -#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1199 +#: sphinx/domains/javascript.py:333 sphinx/domains/python.py:1172 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1196 +#: sphinx/domains/javascript.py:335 sphinx/domains/python.py:1169 msgid "data" msgstr "資料" -#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1202 +#: sphinx/domains/javascript.py:336 sphinx/domains/python.py:1175 msgid "attribute" msgstr "屬性" #: sphinx/domains/javascript.py:337 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:1204 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "模組" @@ -2066,7 +2066,7 @@ msgstr "%s 的重複 %s 敘述,其他的 %s 在 %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "重複公式標籤 %s,亦出現於 %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2070 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無效的 math_eqref_format: %r" @@ -2083,7 +2083,7 @@ msgstr "運算子" msgid "object" msgstr "物件" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:54 sphinx/domains/python.py:1171 msgid "exception" msgstr "例外" @@ -2095,92 +2095,92 @@ msgstr "陳述式" msgid "built-in function" msgstr "內建函式" -#: sphinx/domains/python.py:442 +#: sphinx/domains/python.py:438 msgid "Variables" msgstr "變數" -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:442 msgid "Raises" msgstr "引發" -#: sphinx/domains/python.py:679 sphinx/domains/python.py:823 +#: sphinx/domains/python.py:675 sphinx/domains/python.py:819 #, python-format msgid "%s() (in module %s)" msgstr "%s() (於 %s 模組中)" -#: sphinx/domains/python.py:739 sphinx/domains/python.py:915 -#: sphinx/domains/python.py:966 +#: sphinx/domains/python.py:735 sphinx/domains/python.py:911 +#: sphinx/domains/python.py:962 #, python-format msgid "%s (in module %s)" msgstr "%s (於 %s 模組中)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:737 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python.py:766 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python.py:767 +#: sphinx/domains/python.py:763 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的類別)" -#: sphinx/domains/python.py:828 +#: sphinx/domains/python.py:824 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 的類別方法)" -#: sphinx/domains/python.py:830 sphinx/domains/python.py:970 +#: sphinx/domains/python.py:826 sphinx/domains/python.py:966 #, python-format msgid "%s (%s property)" msgstr "%s (%s 的特性)" -#: sphinx/domains/python.py:832 +#: sphinx/domains/python.py:828 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 的靜態方法)" -#: sphinx/domains/python.py:1124 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Python 模組索引" -#: sphinx/domains/python.py:1125 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "模組" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "已棄用" -#: sphinx/domains/python.py:1200 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "類別方法" -#: sphinx/domains/python.py:1201 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "靜態方法" -#: sphinx/domains/python.py:1203 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "特性" -#: sphinx/domains/python.py:1261 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s 的重複物件敘述,其他的實例在 %s ,使用 :noindex: 給它們其中之一" -#: sphinx/domains/python.py:1381 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "為交互參照 %r 找到多於一個目標: %s" -#: sphinx/domains/python.py:1435 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "(已棄用)" @@ -2216,112 +2216,112 @@ msgstr "角色" msgid "duplicate description of %s %s, other instance in %s" msgstr "%s %s 的重複敘述,其他的實例在 %s" -#: sphinx/domains/std.py:92 sphinx/domains/std.py:109 +#: sphinx/domains/std.py:90 sphinx/domains/std.py:107 #, python-format msgid "environment variable; %s" msgstr "環境變數; %s" -#: sphinx/domains/std.py:183 +#: sphinx/domains/std.py:181 #, 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:234 +#: sphinx/domains/std.py:232 #, python-format msgid "%s command line option" msgstr "%s 命令列選項" -#: sphinx/domains/std.py:236 +#: sphinx/domains/std.py:234 msgid "command line option" msgstr "命令列選項" -#: sphinx/domains/std.py:363 +#: sphinx/domains/std.py:361 msgid "glossary term must be preceded by empty line" msgstr "術語表項目必須有空白行在前" -#: sphinx/domains/std.py:371 +#: sphinx/domains/std.py:369 msgid "glossary terms must not be separated by empty lines" msgstr "術語表項目不可以被空白行分隔" -#: sphinx/domains/std.py:377 sphinx/domains/std.py:390 +#: sphinx/domains/std.py:375 sphinx/domains/std.py:388 msgid "glossary seems to be misformatted, check indentation" msgstr "術語表似乎有格式錯誤,請檢查縮排" -#: sphinx/domains/std.py:547 +#: sphinx/domains/std.py:545 msgid "glossary term" msgstr "雜項術語" -#: sphinx/domains/std.py:548 +#: sphinx/domains/std.py:546 msgid "grammar token" msgstr "語法單詞" -#: sphinx/domains/std.py:549 +#: sphinx/domains/std.py:547 msgid "reference label" msgstr "參照標籤" -#: sphinx/domains/std.py:551 +#: sphinx/domains/std.py:549 msgid "environment variable" msgstr "環境變數" -#: sphinx/domains/std.py:552 +#: sphinx/domains/std.py:550 msgid "program option" msgstr "程式選項" -#: sphinx/domains/std.py:553 +#: sphinx/domains/std.py:551 msgid "document" msgstr "文件" -#: sphinx/domains/std.py:589 +#: sphinx/domains/std.py:587 msgid "Module Index" msgstr "模組索引" -#: sphinx/domains/std.py:590 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:588 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜尋頁面" -#: sphinx/domains/std.py:639 sphinx/domains/std.py:748 +#: sphinx/domains/std.py:637 sphinx/domains/std.py:741 #: sphinx/ext/autosectionlabel.py:43 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "重複的標籤 %s,亦出現於 %s" -#: sphinx/domains/std.py:658 +#: sphinx/domains/std.py:656 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "重複 %s 的描述 %s,亦出現於 %s" -#: sphinx/domains/std.py:856 +#: sphinx/domains/std.py:847 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig 已停用。 :numref: 已略過。" -#: sphinx/domains/std.py:864 +#: sphinx/domains/std.py:855 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "無法建立一個交互參照。任一數字未被指定: %s" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std.py:867 #, python-format msgid "the link has no caption: %s" msgstr "這個連結沒有標題: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:881 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "無效的 numfig_format: %s (%r)" -#: sphinx/domains/std.py:893 +#: sphinx/domains/std.py:884 #, python-format msgid "invalid numfig_format: %s" msgstr "無效的 numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std.py:1097 #, python-format msgid "undefined label: %s" msgstr "未定義的標籤: %s" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std.py:1099 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "無法建立一個交互參照。未找到標題或題目: %s" @@ -2402,17 +2402,17 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/collectors/asset.py:82 +#: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:101 +#: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:127 +#: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" msgstr "" @@ -2622,12 +2622,26 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:69 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" +#: sphinx/ext/extlinks.py:96 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " +"all other '%' need to be escaped as '%%'." +msgstr "" + +#: sphinx/ext/extlinks.py:104 +#, python-format +msgid "" +"extlinks: Sphinx-6.0 will require a caption string to contain exactly one " +"'%s' and all other '%' need to be escaped as '%%'." +msgstr "" + #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -3007,12 +3021,12 @@ msgstr "剖析名稱 %s 失敗" msgid "failed to import object %s" msgstr "import 物件 %s 失敗" -#: sphinx/ext/autosummary/__init__.py:809 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 檔案未找到: %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3212,7 +3226,7 @@ msgstr "頁" msgid "Table of Contents" msgstr "目錄" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:151 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" msgstr "搜尋" @@ -3293,35 +3307,35 @@ msgstr "可能會很大" msgid "Navigation" msgstr "瀏覽" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:136 #, python-format msgid "Search within %(docstitle)s" msgstr "在 %(docstitle)s 中搜尋" -#: sphinx/themes/basic/layout.html:144 +#: sphinx/themes/basic/layout.html:145 msgid "About these documents" msgstr "關於這些文件" -#: sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/layout.html:154 msgid "Copyright" msgstr "版權所有" -#: sphinx/themes/basic/layout.html:199 +#: sphinx/themes/basic/layout.html:200 #, python-format msgid "© Copyright %(copyright)s." msgstr "© 版權所有 %(copyright)s。" -#: sphinx/themes/basic/layout.html:201 +#: sphinx/themes/basic/layout.html:202 #, python-format msgid "© Copyright %(copyright)s." msgstr "© 版權所有 %(copyright)s。" -#: sphinx/themes/basic/layout.html:205 +#: sphinx/themes/basic/layout.html:206 #, python-format msgid "Last updated on %(last_updated)s." msgstr "最後更新於 %(last_updated)s。" -#: sphinx/themes/basic/layout.html:208 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "" "Created using Sphinx " @@ -3366,12 +3380,12 @@ msgid "search" msgstr "搜尋" #: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:302 +#: sphinx/themes/basic/static/searchtools.js:106 msgid "Search Results" msgstr "搜尋結果" #: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:304 +#: sphinx/themes/basic/static/searchtools.js:108 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3413,48 +3427,36 @@ msgstr "C API 的變更" msgid "Other changes" msgstr "其他變更" -#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:428 -#: sphinx/writers/html.py:433 sphinx/writers/html5.py:387 -#: sphinx/writers/html5.py:392 -msgid "Permalink to this headline" -msgstr "本標題的永久連結" - -#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:120 -#: sphinx/writers/html.py:129 sphinx/writers/html5.py:99 -#: sphinx/writers/html5.py:108 -msgid "Permalink to this definition" -msgstr "本定義的永久連結" - -#: sphinx/themes/basic/static/doctools.js:236 +#: sphinx/themes/basic/static/doctools.js:155 msgid "Hide Search Matches" msgstr "隱藏符合搜尋" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "" +"Search finished, found ${resultCount} page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" msgstr "搜尋中" -#: sphinx/themes/basic/static/searchtools.js:141 +#: sphinx/themes/basic/static/searchtools.js:226 msgid "Preparing search..." msgstr "準備搜尋中…" -#: sphinx/themes/basic/static/searchtools.js:306 -#, python-format -msgid "Search finished, found %s page(s) matching the search query." -msgstr "搜尋完成,共找到 %s 頁面符合搜尋條件。" - -#: sphinx/themes/basic/static/searchtools.js:361 +#: sphinx/themes/basic/static/searchtools.js:371 msgid ", in " msgstr ",於 " -#: sphinx/themes/classic/static/sidebar.js_t:83 -msgid "Expand sidebar" -msgstr "展開側邊欄" - -#: sphinx/themes/classic/static/sidebar.js_t:96 -#: sphinx/themes/classic/static/sidebar.js_t:124 +#: sphinx/themes/classic/layout.html:20 +#: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" msgstr "收合側邊欄" +#: sphinx/themes/classic/static/sidebar.js_t:48 +msgid "Expand sidebar" +msgstr "展開側邊欄" + #: sphinx/themes/haiku/layout.html:24 msgid "Contents" msgstr "內容" @@ -3474,25 +3476,25 @@ msgstr "註腳 [%s] 未被參照。" msgid "Footnote [#] is not referenced." msgstr "註腳 [#] 未被參照。" -#: sphinx/transforms/i18n.py:301 sphinx/transforms/i18n.py:372 +#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "被翻譯訊息中有不一致的註腳參照。原文: {0},譯文: {1}" -#: sphinx/transforms/i18n.py:344 +#: sphinx/transforms/i18n.py:366 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "被翻譯訊息中有不一致的參照。原文: {0},譯文: {1}" -#: sphinx/transforms/i18n.py:391 +#: sphinx/transforms/i18n.py:413 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "被翻譯訊息中有不一致的引用。原文: {0},譯文: {1}" -#: sphinx/transforms/i18n.py:411 +#: sphinx/transforms/i18n.py:433 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3534,16 +3536,16 @@ msgstr "無法提取遠端圖片: %s [%s]" msgid "Unknown image format: %s..." msgstr "未知的圖片格式: %s..." -#: sphinx/util/__init__.py:277 +#: sphinx/util/__init__.py:275 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "無法解碼的原始字元,以 \"?\" 取代: %r" -#: sphinx/util/__init__.py:525 +#: sphinx/util/__init__.py:497 msgid "skipped" msgstr "已省略" -#: sphinx/util/__init__.py:530 +#: sphinx/util/__init__.py:502 msgid "failed" msgstr "失敗" @@ -3564,22 +3566,22 @@ msgstr "未知的指令或角色名稱: %s:%s" msgid "unknown node type: %r" msgstr "未知的節點型別: %r" -#: sphinx/util/i18n.py:59 +#: sphinx/util/i18n.py:61 #, python-format msgid "reading error: %s, %s" msgstr "讀取錯誤: %s, %s" -#: sphinx/util/i18n.py:66 +#: sphinx/util/i18n.py:68 #, python-format msgid "writing error: %s, %s" msgstr "寫入錯誤: %s, %s" -#: sphinx/util/i18n.py:90 +#: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" msgstr "locale_dir %s 不存在" -#: sphinx/util/i18n.py:184 +#: sphinx/util/i18n.py:188 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " @@ -3601,6 +3603,11 @@ msgstr "在評估只有指令的運算式時發生例外: %s" msgid "default role %s not found" msgstr "預設角色 %s 未找到" +#: sphinx/writers/html.py:120 sphinx/writers/html.py:129 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 +msgid "Permalink to this definition" +msgstr "本定義的永久連結" + #: sphinx/writers/html.py:321 sphinx/writers/html5.py:300 #, python-format msgid "numfig_format is not defined for %s" @@ -3615,6 +3622,11 @@ msgstr "任一個 ID 未被指定給 %s 節點" msgid "Permalink to this term" msgstr "本術語的永久連結" +#: sphinx/writers/html.py:428 sphinx/writers/html.py:433 +#: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 +msgid "Permalink to this heading" +msgstr "" + #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" msgstr "本表格的永久連結" @@ -3635,40 +3647,40 @@ msgstr "本目錄的永久連結" msgid "Could not obtain image size. :scale: option is ignored." msgstr "無法取得圖片大小。 :scale: 選項已略過。" -#: sphinx/writers/latex.py:341 +#: sphinx/writers/latex.py:306 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "未知的 %r toplevel_sectioning 對於 class %r" -#: sphinx/writers/latex.py:392 +#: sphinx/writers/latex.py:357 msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: 太大,已略過。" -#: sphinx/writers/latex.py:639 +#: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" msgstr "文件標題不是單一的 Text 節點" -#: sphinx/writers/latex.py:671 sphinx/writers/texinfo.py:618 +#: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "遇到的標題節點不是在段落、主題、表格、警告或側邊欄" -#: sphinx/writers/latex.py:847 sphinx/writers/manpage.py:239 -#: sphinx/writers/texinfo.py:633 +#: sphinx/writers/latex.py:804 sphinx/writers/manpage.py:239 +#: sphinx/writers/texinfo.py:629 msgid "Footnotes" msgstr "註腳" -#: sphinx/writers/latex.py:906 +#: sphinx/writers/latex.py:863 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "同時被給予 tabularcolumns 及 :widths: 選項。 :widths: 已略過。" -#: sphinx/writers/latex.py:1237 +#: sphinx/writers/latex.py:1194 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "維度單位 %s 是無效的。已略過。" -#: sphinx/writers/latex.py:1550 +#: sphinx/writers/latex.py:1507 #, python-format msgid "unknown index entry type %s found" msgstr "找到了未知的索引條目型別 %s"