From bbd6ad587c9888919a7a4714c648aee21422890f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 Apr 2022 05:44:04 +0000 Subject: [PATCH 1/4] Bump minimist from 1.2.5 to 1.2.6 Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3b04e919048..f889858f05c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -697,9 +697,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": { From 8939037c6bfe280c796c09e9b27ed13d335bf5ae Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 3 Apr 2022 00:34:55 +0900 Subject: [PATCH 2/4] i18n: Change translation target branch from 4.x to 5.x --- .github/workflows/transifex.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: From 11a1dbed911d00559a4586add10a3c21089e2ae3 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 31 Mar 2022 03:20:11 +0900 Subject: [PATCH 3/4] Fix #10214: html: invalid language tag was generated for zh_CN So far, HTML builder output the `language` configuration as a language tag for HTML. But it takes locale string in ANSI C, not IETF language code. This converts locale string to language tag to generate valid language tag for HTML. --- CHANGES | 2 ++ sphinx/builders/html/__init__.py | 15 +++++++++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 7037723fe50..7cf45d95876 100644 --- a/CHANGES +++ b/CHANGES @@ -67,6 +67,8 @@ Bugs fixed * #10279: autodoc: Default values for keyword only arguments in overloaded functions are rendered as a string literal +* #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/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, From e5305e8e818279ce64d0cec7892e464d1d63b1af Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 3 Apr 2022 00:17:23 +0000 Subject: [PATCH 4/4] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7945 -> 7945 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 22 +- sphinx/locale/bg/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 490 -> 490 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/bn/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8089 -> 7974 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 420 +++++++++-------- sphinx/locale/ca/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5659 -> 5585 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 420 +++++++++-------- sphinx/locale/cak/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2423 -> 2423 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/cs/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8489 -> 8263 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 422 +++++++++-------- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6444 -> 6444 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 22 +- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13375 -> 13375 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 26 +- sphinx/locale/el/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82694 -> 82355 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 436 +++++++++--------- sphinx/locale/en_FR/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 461 -> 461 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/en_GB/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 14117 -> 14117 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/en_HK/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 506 -> 506 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70308 -> 70308 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 4 +- sphinx/locale/fi/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2910 -> 2910 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 420 +++++++++-------- sphinx/locale/fr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99313 -> 99313 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 24 +- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 500 -> 500 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 22 +- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17370 -> 17370 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 22 +- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11755 -> 11755 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 22 +- sphinx/locale/id/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61082 -> 60854 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 422 +++++++++-------- sphinx/locale/it/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10221 -> 10016 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 434 ++++++++--------- sphinx/locale/ja/LC_MESSAGES/sphinx.po | 4 +- sphinx/locale/ko/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 84283 -> 84036 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 432 ++++++++--------- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7173 -> 7173 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 22 +- sphinx/locale/mk/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 2009 -> 2009 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6838 -> 6838 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 22 +- sphinx/locale/ne/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8991 -> 8867 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 436 +++++++++--------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19649 -> 19649 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 4 +- sphinx/locale/pl/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29935 -> 29697 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 424 ++++++++--------- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 81456 -> 81246 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 424 ++++++++--------- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8226 -> 8226 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 4 +- sphinx/locale/ro/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16701 -> 16701 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 22 +- sphinx/locale/si/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3600 -> 3600 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/sk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sphinx.pot | 419 +++++++++-------- sphinx/locale/sq/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78815 -> 78589 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 432 ++++++++--------- sphinx/locale/sr/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9424 -> 9424 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 428 ++++++++--------- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 582 -> 582 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/sv/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6823 -> 6752 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 422 +++++++++-------- sphinx/locale/ta/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 645 -> 645 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/te/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58623 -> 58623 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 22 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6801 -> 6801 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 22 +- sphinx/locale/vi/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5969 -> 5969 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 485 -> 485 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 22 +- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 65245 -> 65268 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 6 +- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 499 -> 499 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 428 ++++++++--------- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.js | 4 +- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 514 -> 514 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 418 +++++++++-------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41673 -> 41472 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 422 +++++++++-------- 126 files changed, 6706 insertions(+), 6405 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 3f1bc1ce18467300f15bb401cdb73f2ffa5fcd89..1284abfe2119db1e9a1234c3a1475153d47c78b1 100644 GIT binary patch delta 20 bcmeCQ>$KaTEWmEAU|?WnXt7yK;65J!J%|OZ delta 20 bcmeCQ>$KaTEWmD{U|?WnXtr5P;65J!JtzgF 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 c403bc816bae8464aac74f91d635881bf886bf35..423731acfada338e77eedbdd86419a5244369ece 100644 GIT binary patch delta 21 ccmaFG{EB%(8<&Z$fw6*tft8{8#tBi308W<%eEk 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 d0d47c948f25fcc092a00c18112992600739cc5c..5488e0822377450e5751d099d7950ae5b750d8c0 100644 GIT binary patch delta 1787 zcmYM!TS!zv9LMpg^}1g2nr3Qd<`qj#QoL=LVYde>Av7t;ha#Uudx*rPLPQBdE9~;5 zWfEx;Ym|f-XfI(&^q>hEQ9^+j83aOM-=7V%?4Hk=Idl2Xf9C9M*Mk!Ge3;iw!>68K zEWaj)O8-BTKE`-ce1rb@9z$^s!|^+AM2D|2AsB;to`C^ajCy{+KCi_n$_*H8jN7zx z6G%lbYQQ0k#BtPwAJ7j!V+k(Wat4(_lyi|PQ;O<$5M!_w)&C+AqiIDaUd7GWjo!>} zJlv?^2rANX)WEZ-fWG2-{B6st=tVi4PU;uUMHxy&1(0ejLG`c1t#}qUUrEtoYKcOaELKoP}R0dvSGJZrIULT^#!8pvs3RD0ss0`l1 ze0+-A(Y?ftB8njY?U;y4%>c&Z6lz6Fn2XM^f4Weoy$Q7i9jH@&56keCeeUEHP`d=& zhr2Nqn~~SqZTh&;%D-R*E+JVnE|!;shfxDGpdxNVO)!XgxQsQJP9v4uQ0>N0hin12 zpo8=%&~2#aMVP4f|1>w6uobhh3klv#pjI@E`r}!_0nF#`OIx#mdoYwyRX&R9*MjVZ z=|p9+2l<)_E^B84wXhXT)%zdM25I7Q)Cw-3_VfwzH8Wf^&@z%76UjkfQ6>$wGM6o% zLS6`S9t-gjY5}9Tc1AFTvJX)xz#Zt;p(x=-dvgMni5}dGkFgw=Q7b5*u{s_@mFrNc zY(@ptYwMrme#-AqX(94nLJec$~bd;?J%6P71yl~QHO5~m6>@|ibJS$VG%0T v&8Ug4p;9`7I$VF^J+nS%9G)6ywZoa4nYAk+E2|(o&+{^<&)+i`wdng7PBf?H delta 1862 zcmYM!eQ3>59LMpmyP0jqn9E#@JMKI!vkh&wGO;zaJWMHuKNi=9VIdDuH_%NBp2O-R@+63b)ALyGrjopSr__d4hN&hMP>`JVGzc*fC!(95LgI^$Qx z-w6J8MydAy_dLd|H`Nyyhp%uTe!xNa7l+`WK4t@OBI?nl<8k$f8w%}mwL{0b(WAQ7_z(1~@Ph&sog-DYvM7>vr!>}6l{(dAztHXG#$Klw3 zy_w%yDX8OJRHU7#fxA%w{X`EY&`I?~jK(pj_r`NmhO$us&Bo~J`-o*QtXe%F@P6P6L+98 z(uE`}IZp3OkP{(NxY5}#V z@eewW^d7upP@4F9mirkQRon7VK&ae zNw@O-n75S3Prs6c`8q}#jf!cyAsMCHQ z3-PmiK8;U7{YtP1%W=HE{{{;Bt{O(b~xgj$h@e_IMPfW^21&*M4l z*&;@rNxcSDzk_=J3$i;FP5w2H7iqE_9Io$w0R^qF3Q36_Mg?#kbMQTCZv$*RMJquK z6hx9{`;bLiJ!*wbuHJ!sDE1cf@f&I(ne3y+TZo}?6t+`PgeOsl<1%WG?xQl|rExZ< zqE;S6t>6Ocy*5{Wj7s?@R6v8tyZWW$94thQcL4R?u@tN5neZ$PdZ8VaffueG!^uHkOpP61T|jusOEby6;Zz6#&zXYtJkmfZ{FbFT)BFa zzcN_9l7?XO-wFF^B;, 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 76e091d3a92c37ee083e3f15e3a777da304c823d..9b14b02100335344837d95030fa4479d4e817eac 100644 GIT binary patch delta 1787 zcmYMzYiQ0<9Ki82&kVcR#pZtBTsJl*Bw4v6m!-W}a%(T<1s-ZLc|%VkC5hyc$P0v8 zgr&qnOd-TOxy&Vz%gBmPfJs61?h(ZpCrG*{2CM1 z{(l~3gpfn^5q8HH*bCocAN+#(_&3(`dxX%J`Y6o9ndtj!%)+|Zp2U73q{3DT{dsW^ zv++DS@ii>M$LNCZu_u1RS=brtQ)x87Dx@h?qvL9EASTiAyO0>ee$2!pIEeMbNeb@l z1{!%QI^hd6kWbhR|HQhprBg3NCmz7V@x|!E@J$JC$atxU9cSutOJRqtF!%k@$l#haW+oE-q?sGxC34A9GZbEXr@{)<(ag`h9|MZ zGc2V2HTwQ1I-!+8kc*yeDH_O3NLXl7o<_6{tdp3Z|cLq9arW6?WQ zi8=oN7gI3x%exx5t!O|S(3Eb%Voc!-JcXQEXu}fx8teJw)twKEjzKe69_v-;yz|kG zRAZk1|J4+Xd^4KTJ!s0$qM2wxcW@t_@HrarXLP~u=)|4qQT{;#&R`PXk4MK%MpHi< z?O%f_Q@)e}*$NxcKz5+1KZ;Ip3O#}*G@#2k25+JheT?thqd(DcztMmaOzQmEX!}sK zeRNS++Eplz9j4=OUMxf>PNEsvhz{6`?&L6fmS@n+TtfTbM*H0>YJQ%vCegeqb8aGY Z%7lu_;T07#CQWN@$|>&N++Hv-@ej19nMMEr delta 1841 zcmYMzZD`e19Ki9D*X`;a+`Q`M(&?REdT`37=F@#K(@0B_1%bY(2|^b)noaGJEC*La zjYNz{XK*2F1cgsQGZ4p!@I@tLq*+8N15sZL^C@4%RQ!JPK;ysj`Jd>s}2#gm;yBmWIua2O5bUmS&%tYW~3TDweUV{d-0eQkE3StdC=;yQ> zJ-{Ax{STuD%gKK|4TorO!XSF`ACM>fNnvWQq9+_i0~*6I{ATLWc?;11o=3;OjBeD5 zGjMHee-AzR_UQW+i4*9@{Rs*ihH_@vpCrYn;Jn}6SLK83EWeYlBEgDc88tGPa;hpHl`_PjdK);Ej$P<2| zXvDwJ%p_Bf+v|}hG*J*kSdM1;HJt44e;qGmKWs%)zbn@FpaFe?ru0*siHC6-p2aNQ zK<7V0J~Oxwt-p?Dpd-2&&1841e}E!eY zhR{2`g=S_19bZ9O9ha), 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 3d7b8dd200536763548c13a2638d8338eaf37f4a..c061ef39feaca142dad15a7030834e93467142e1 100644 GIT binary patch delta 23 ecmew^^j&B}F)Npeu7RIU(5hr$_HHl delta 23 ecmew^^j&B}F)Np`u93Ndfq|8w#pYVpU(5hs3kPEW 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 b6ef5d0be51ab6ce1cdf3763f549768b25c84008..087c1eeb996c1f379244cecbd748bf198ee6b708 100644 GIT binary patch delta 2575 zcmYM!duWwq9Ki9%Ip^luac63q?b6w_$d2N4#dacXt&G%akc%joV31qIvJATrdI+s- zSzx7--AKH&j0v5hK)aBkVQQH{Iw=*hKQ@I{!!iQ#RE^H7Ll>To20A->D>{BL z*5Yy;kFTMDZAF6%yJE*4BM^tDRkV~Y-|{c4c2*hL#$>%65V(v@(CHfTwo!3=69o&X-7-^AR5r~=)84k zB{rhJo}ID%YjmINVJns*G$gf%eZrGir>^jm|^o-G&CzhR(ky z_Af;@?m~_v8y=4h&mu(#FOPJDchIxyMNT6eKo{&oH$I7z@wa&IgJNaIqM1)X6RSoa z$}~FvMl^t1FqOyow{qdYM;PURRp@}#Xr}9sPk4nd19=ZE<)>(XN01_gbLc~M5vO5- zN8f~+&|kxRG_W@Gy|LJSfB#R#hHf;YZRkQ@AjyTp=mMwF0MFud9K;%|;Wx#eVGg>% zqG&sM6djnsW$1c6=z4o_`1ik`3m5niJ*)nB{}&oa3F%siDm3yswA6EOI5Q-c(1wnC z2$>olMFV&NeF)d%6x@yma-f3qw}d~_;2Z7&UXK5wnO0E_H>yQ9nt=w;gnYsxzTCJA zr{WrPqaL&ppQ9UngC=qUU9TTK%JY+{zh_;*s-EF^^jWAy7nq3-%%J1uqm{Zd_IDz& zhUMr{yoe_BKC(yHhxK?0Q<$XFXJR%Q@J(4R=nI`_CacksZALfTf|hb8`qb}5GdU33 zkE8Pj(Lf4$2{^tM4K#x$)QTq59`8HQeX=XKu(T^<$J*Gj5q-nGjUL4obli^UhiJt< z!?*A|bfYfbT8?`f4fr`U;Fn_io9MALqX*9rw*nTq_*g~{IccBkm2l{Y6hE`-PPHE?26BnM@ZZxx_=!VD8j84Y;e{lF! zoEph6fo@!mW_A^NWKC#>*Qav*Mf>t|-zL(dat)>DMvuE@Mtwu7zW%ydjk&8Q{#}r3 Su6$zDtIMh?a+TGI{Qm$9qudq% delta 2778 zcmYM$4@}f$9LMnoIZ+@{P%}{QC!)p%?ywAVro@($;pViA+%h}3(>uUB;SK_~_*u(8 z)M`ty(uK~jG22+sNu`S#JEkpI%q?pzXHLe-CjFVK=`8F0(PxVt_j;b^_xzsc`~5z@ zALD%4sdD#nmglhHr<31#{CXy<_y5oJRAZ*moj_f>jeJZ}+P!`{&ZM7-nYhUIOYwgC zl{f>dF$1IM;LFH-*L2ZHXP_Uo@F42OVbqORaSqUPw=GxH=-A- za4sIe*?1DQ{#ok~PGx`dHI3C=`0nlio3pwyo{v+o7`4E1J6?$jYzyXKEl$O~s14r0 z6nqDX*&Ig&@&PKqbEry;;1u>ZKhV&PW2nq0Pyu-OQifSL2^ZUbA$sUPhPtmDweWgW zpqs2g)ctL^01x7HJdFx$2wnCvqxQljqzL9ZYWyZ@;$*_r+0H=q^HBj5BU8*WR0YaV z0aT#oZ9^qgi+Z+RLRIV->PXLIP=7TpFi?)yP!SgqCQVa@1-Jn<9zz9o09E3{s3Uq8 z75GWp@3q%I#aWDhVXuFKTK5XB!r!J-f1OPc2dYx8L!Ip=zLZf7YT-DxqG~+cAi#djCgg=(YIPPWZ$2C-G`1qg>QN zrASfCTGRqtPyza}2t$~MZ=nM0M`b>2y@)!BAMsKA30*C?fbg~8!>F@agIZv{?N{4= z1Qp0$R3$o4fgeScx*zXmhU8#IQ1ix+z05UK07+z}*D^Jm`Y)uB$AAJUN0o3h>Mvdc z&c_%k(+<=|M^GERj|!j{`Iuq8wDC9=;NPf?7BESbcm%ai87h${bEv--tY$!G8AhFT z8|n=Aqn?E$s0F%F^ZHQp22qvz%3i;MBx!y@9Yr$P=(Wv9C053l0(};}*zD49Xmq0< zjxSM>e~+wT?w~Tt=4Dptyr_*=pi25U>gnHt%IJAJ9zor=9~ICsti(_3^<<(_;O<-+ z%CH2L;TqeoKy6rsD)lxyUTeo&P=E3EppNDh)Vy|U2daX{u@n1H`)r^rnzt1R+%-WO ziacU3w4pX`NBx0$)AmoJ&h9f*$Ish+UjKpnv?+t(!ZQ&5RaL#;C#HNF@XSTSb0 zG)igcA*?_>t(#F5sYPYfiaP5~RA&9Ch0dZf8btLkpQERBBxbYwZG z1oJRHk~-v>8VvaS^`USe{$j@Jq~+T~;ZQUf@E1ATBTZqyvncB9^6dyb7%g;m`eHS~ zPtkm&(SC*`Ze>C%EO72sQ&A$4?fD`f8 z`F1;DpA!p&V-XtuU7_fqhMZaPfgFEQ<, 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 b46026e31318c1e09a23c391004c1458849f8a96..0c71871e38d7f48ec0a0b78b58059f41232078f6 100644 GIT binary patch delta 20 bcmZ2uw8m(IE, 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 812f5ce1680cd0da2976f17d6671ca000afc448d..5b78abdcd40b8e87b02f78d388cd40ccce31f01b 100644 GIT binary patch delta 39 ucmdm=u|H#jkpjE9f`NgRp~YlN1$(}b#O&1Kj7$Y@e_zi?$IWdDJB0xNxeUVq delta 39 ucmdm=u|H#jkpjDcf`NgRq1j|h1$#d4{M^jSM1_#V?9}3n%*|~IJB0xRpAA|7 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 9a8efbd0cd631f78dd2677883263046657f5f02f..86372188a3d50478e566960fd118f38516a79e00 100644 GIT binary patch delta 10083 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, 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 bd825ce2b2704e92d5bd33a219caa0cc7c65b99d..d61b63b83284c18f35df9ead3ef9713e24ef806c 100644 GIT binary patch delta 21 ccmX@he3p4a8<&Z$fw6*tft8{8#tF8J07=ybCIA2c delta 21 ccmX@he3p4a8<(-Jk-36_ft8`f#tF8J07?)BEC2ui 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 f09dfdc0ffe44d7bd38c5043231f28f9b7a4a264..299c6172a033e501828dbdab02c566c9669ed53b 100644 GIT binary patch delta 23 ecmZ3Qw={3VRXHvbT?1nU0|P5V^Ue3=+#~>K*9XV| delta 23 ecmZ3Qw={3VRXHwWT_bY^0|P5Vi_Q1t+#~>L7zfS( 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 28e9396c0ea9751d208833419d7af49510127099..2ba7676e9adb31af41358c6069ee1fa5de7d358c 100644 GIT binary patch delta 21 ccmeyx{EK-)8<&Z$fw6*tft8{8#tB)B08uvvtpET3 delta 21 ccmeyx{EK-)8<(-Jk-36_ft8`f#tB)B08w%Vvj6}9 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 762c50fcfa40136dac47958bd15397316fcf6635..b9f5030d47462888254649815190f024f06c79ec 100644 GIT binary patch delta 29 lcmZ3olx4|MmJO_v`9c!2Q;Rb)6}, 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 61acf37ffcb83ede17b63022d8698889cf86d1d6..fdba658c6bb5699eca3135646ffc45e88768a573 100644 GIT binary patch delta 23 ecmca7c28`>DK;(>T?1nU0|P5V^UYV-x>x{V)dzF{ delta 23 ecmca7c28`>DK;)+T_bY^0|P5Vi_KTqx>x{W76*C& 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 cedc765841091135da258405c2e454951cdaa9e2..5f201b6210a0ebda781a266774ddad5c440be4a8 100644 GIT binary patch delta 21 ccmey${FQk^8<&Z$fw6*tft8{8#tEs608nKHo&W#< delta 21 ccmey${FQk^8<(-Jk-36_ft8`f#tEs608pR?qyPW_ 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 7d3143468d8cea91220209d600635632c861a40e..9c7b232be5856a7009a60735928b27c1b110bf70 100644 GIT binary patch delta 22 dcmey^&i1jLZ3AZ~ySajaft8`fW`WL!zW`&82*&^b delta 22 dcmey^&i1jLZ3AZ~yMcm%ft8`zW`WL!zW`$|2)+OS 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 5d15056f6bf9731171d7c328f8469d5502d75309..f6b166ccb75d51f1ef3b4a9080b551b6411cc103 100644 GIT binary patch delta 18 Zcmeyu{DpZ!C%d_Vfq|8w#l{IKi~v931`hxL delta 18 Zcmeyu{DpZ!C%b`yfq|8w*~SSei~v811_l5C 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 5a42a0e9e49108eb58fbc4873e2f37971e33a0d1..7993893e02dc2338203eb181320792060c837f2c 100644 GIT binary patch delta 22 dcmccB&UmYxaf6-)ySajaft8`fW>bx&(g0c>2K)d3 delta 22 dcmccB&UmYxaf6-)yMcm%ft8`zW>bx&(g0b$2J-*_ 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 5c26d589c10706cc5185c97e4646265509beca4e..8f39a4b80bb88df6eaa02eedf40c13ab818bb7a0 100644 GIT binary patch delta 20 bcmaDI{W^NX0V#HK1p@;sLyOJFrBs9gTL=e3 delta 20 bcmaDI{W^NX0V#F^1p@;sL$l4trBs9gTBrv) 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 a68f96b453292c997a52c904ea3a1d1d0e51536e..675a6c675c763fa41b3e2322dc9939a6491c0034 100644 GIT binary patch delta 10362 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 J@;4Lm{|BUYE8+kE delta 10555 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 t{89O3G$-cMb;0O@(WQ<;XL%7, 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 73bf05a22c4c0192746ab337dea6fb1d105b6646..b321ad309cc88dc4b496c4f27a1c9516aa3375db 100644 GIT binary patch delta 3002 zcmYM!e~iy{9KiASb$1+&+?_id?#^*yXeSrCbe3{5%`wZuQm)kGNZf4sv2W%_Cxt?_ zgd;LmSL;hN^kau5)3jytE3B55Nz!gYf9Uyi@2%Up$LIa}ynnpjulM`oN>%-s#QE&B z^?{!~{OiiUL+Q5u|EXycLR*?M(N_zw7#CwJ+!o^vm_vIvX5o?8K7)C*|HSr~o*6Y9edv6R zSca$2er@k&W2_&#@Q{!F&;>@K3y;MXI0;+hR5ZaFbO&{4|5eDG;azmWkI?ZAXa)D8 z3m!)+bq?>sYnU+5#6ucpP-h3WMHlFZX5KA25bZxI`V@L}FJpIHf=m^*qY3XpkLa5i z{~kSpb1{CYJ@vQabplS5!XMi?XhH>O<~`7z4nPwsNBfOMcQ_fnymQb>u14?5u4p56 zrhNv7V-vcO!P(T`(v8jzp(jp4UnJ1X*P=&IkCt`^x`R(+dw+a?5IYb*8sA?)=e>*` z*)6oPc}#BNMaZ5*U+eGAhN2UXKo=Sp;}enJP|Y7Fn1?3xDyHIVXr)%h_iNDc@1qNB z#n&;3j;kQcJL{nR660cEVhl_}6Pk(La2~qwI;3i06FR|X=p8wLR;m%5@Hl!DC(*>3 z(D66Xc~dz*3BYndJ^gEw{POua`>s9DP+tItx5Iuk$oc2;V27^p#V~Y&N;K0k=tSe=`)AMuUO>-yHrg){<4e)fzlkNd z3GH_Xy$e60U&&QW^ZUQegBhi9Wxb_s&~^!0>V9YihM+qhj%+53MHhY^O=t#wml8rP zns5b^S&`A`2FIcOYGZs6CM@+59z5Ik(Dp85j_`GipG0?X3H{D*AQw91^R1a+fAr`c zK<~_>Xa%a#Bb*z31Kq%Obe&{A=Rb&tBLoWZHWpwZbt=OObb-0(P7+A5!ZI9;AE4t- zM4Qk`b>Ie?PyxE*J~#^RL+4u<<8@sYa4fxjZTgsU;$nr-m~g^_4{GMeZ- zbiwt}&FF$VWBYR?r*Hs0(o@k3ND;$t2_C#`&SoMRNGKGbmt-h@a-`xNvntI;!F zh9>+ry1+)XLfg>F>_^9+MHjq+9&Jlr_QFIV51vsaI?>bUfEUpnFO2OqXo6eO67EGO zI)t9(Pv~X5h9-U;-B^pF<~!34tyC%6zZ^*@5vq8g%3(U1`EqojjdVj7KkN4Z84x=n^!cm9f16y-Ocr4(o@VG4Lh2ql0K7XJh3lSi714Fbkgyr;*N7hFG4yjikKU1M=+WN5gts-5Iu>CrdWM702_B4&KucDI9>o)w zhHKCS*Q1GVL671Kbo_C&lBdyi{z4PEiB>4Hg!-FNaY=It`=ApI!2Vc?=~#>Qn;%__ zBp>Qx`{QU5t;jxfhlkOlIgKXtGg`UJ=zOoIn-{&P)v>D$b`A^n}l;kTp$I@Dt^)DS* oR9ad-U~sak(^nbE-rXxxG9H;W=h>-6(`T)HxHva?xVU%ve;+dt$p8QV delta 3152 zcmYM!4NTQl7{~FWasl7v3YducM};g!DG<`o(x%pQK>5;ETHW9Zcf-r|a?Q8unmSue zZE0ez+;paM)wIH4nc|%9wXs~3O3Mmox)j}-sg-EopFUd*`TWoMpO@!(&iT8!q^&f5 z)}OH6@w112nfz<^srCQQs;H{2vTd*@8w*DsUO}iOW@S?T_+;+^y-I#g!DwPQz2p{#Lrr1Fq}Ls1iRQ5zJYA|Go`LyZrauc40aUChF*$lC4*D&QYb zNA#=px1o-p-TFJHP=5_fXB91!#UHivQ2~uZMg9aT)2C4ZJ%<_>L1nlEb$QpKD!I%2 z26bo7o9)<_cADS02{_VE{gqLa4wY~v4#D-P{=KLSnovja6RO0ms7(H__H}!I8&m1` zFPTQ2&9=zWbi@U&@0@vC>>^1KzXt9@GMjs0@yx7W&rSpGF1n z3+k*dqQ>2@{#&Th`?!hOn2s7(jQ#ZePvJqIO(kmL0#rb+qHgPQYi~l8`Xf{YK0{@^ z7b%82j+%cK70@|6(ZRXPsDK+-OcgnVs=x`1Yv5&j@fWJp|Dw*e7vGZFgOD{`5vsow zl|caY-A9m%@7AIM+=e>3&rx?~AF2W^s3W{&CiLU{l|g^L32ihC3-NIrhzoE4ZomR; zKy7ddmB|gHx~?6IFqNC8c~i}5RHas-0;)qLyak`ak29&i7QALJ6s}6y8H;fsYT_&; zXjf_d%aAY49kBlIQGs4TZP=ZL?1S1c%i0ejvAP1(5tqg7;aQ~W?gi9kTZjr|DYB-k zL*0?xs3SOx`rdy;on;H^jN4HGccBd0APrTaOyt+)^GEZiq4tXhdC=L$F$XuG&ZrT! z&?(e}R#e8h)U#l)MdSc3ZMt&lIhr!{oMfT7=gM} zg{Vx6tzCx7Y$lGzFe;!O_Wl5>Qb(-+J8NG+W&S5>!;XXPXi$lyVR!a-!+6ku(Wo;V zZ|xG)C7NmdFQGD@i<@y7s`P_NS6|Uc)cCQej3=W4n`s7+SX?z~+&dW8*>2=P-|r`= zOVfy|z!B8#J%b*$Vgh!`zPCWK=|>;^nW!Tfgc>&+72wOLz{98`S&jqwD1lQ(Je=WS7 z4n?#RRk|-R5s#rJG@&M(!AGzS6=2T&_cAIrXP^QKn=#~zbc-Se3u?bz9uL~^ zE7XF=QKdU;1J2clx=u?>stN`wszc#*k(AW>eJK+=jG7Y)hia>W6~nzbHS@z2UUsb) z2~-A$);{3P4aCZ;Lg7j;Ru%MWgMnyyl{asGFuG_&{onrPgf98H59fJ#d1D?btUuMK zG1(W61#4sVac@?K(a(g+gVFMUS6(wWQXPy1Vu9gaEL!sl41poj5 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 39d38fe92eac9a9b97213b487e22549adf8c5e81..47f91f8b9cef8dc9e5c2c54ff5ff4b8e9efb4753 100644 GIT binary patch delta 12217 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 delta 12419 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 ap1b@0ygB#hZHQmm?N+Uw@84QE?Ee6iiZ-7B 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 a087feea19e12e5f45c52a58f86a9f27fdad0b35..3fafedfa6b9dfa1159e58630d353776ac2a41264 100644 GIT binary patch delta 20 bcmZp*XtmgIP=MWB!N9=E&|>om0b6bWMvDe8 delta 20 bcmZp*XtmgIP=MV)!N9=E&}{Pw0b6bWMk@v< 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 a967838e0cd55e9f2dab352127b3d6bfcfa30c7f..3fdb893fc1e2a0f3f02fcc7ca71f4b1118e225cf 100644 GIT binary patch delta 23 fcmcb~f0KX1b!ILTT?1nU0|P5V^UV*Le=q|8VUP#i delta 23 fcmcb~f0KX1b!IMOT_bY^0|P5Vi_H(2e=q|8VbKTU 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 cc3dd6d5e0a76959819c8cebed27e453d2cbf110..df5856fc3db6b109a30e30c3a5679d59817e8fde 100644 GIT binary patch delta 20 bcmdmHy3KThgdn@Qf`NgRp~Yr-!Red;L7fGZ delta 20 bcmdmHy3KThgdn?tf`NgRq1k46!Red;K|KYF 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 3cc2a9b056abb0981af881e6845ba8f97cd6b201..4fddc2cff03876e03d1f407463e8ec4a99635b37 100644 GIT binary patch delta 2227 zcmYM!ZD`e19Ki9j2c2Hsnr=Sb&D?Y@NQ*nSniXDM>lS0KL0S}BS}$hFwuUHC)VxwT zTicr@GStD=1HJHJ5ldef6cQAykb(t4G_)5QEU_fY2u9zpJJ7hhpL5Rtobx;9ch3Kg zKKel>JH0gjSm3XZ|8oAf=Ue;#@AU;C6jJTQc{qRzaVXYL;u7lbVF^y)a{L;LaT<&8 z23FuK+J6m`ED9kTYA8727QP(#7&>qluD~8#iAQiTj-i3hVhS%}8Q#QYSd^HXuPS;k z5;JVZG&aQgAuJ?*=%-M?gJE=n(c2F~IEOCeOHASvI?)XzR=9=pF_&#n3=7ePl%knR zp*z1H?Vmw6*otO!50(%=9H5YkZ`*(a=qZe%13yG397h-UX>=0pe;F(BPrL({lO{7& z&6o9BA3>|nLy(<^-VVp*HTFIa)OrZ;V z5_uH%qM3Rb&2%ripu^_hhN0NucziI1PIv}Ag3r)}d>fztfM(_jI`ItV;Z1Y{f5qqj zqVvyVGW!*x^-^@c@*?uTn!i4l5Z zeGtv$vDp3*dRepQDDVm2^W}tB(7;!56<&|^0!EvWB6P<|bVpU_xJ_u_dYsG&VH>)z zMN8+7W+ghV9Nl0wlId*NNWmjWqbY1hU$=c&frHVr=oSHLi94aa(Wt=|=`Lo?QZ&fA1$YSnHErs56sK|h+h(W8G9 zlJ7E};`m`YY(x2GNKkYbV}W(2+lp yD7=uDsJkasTaijVSW|!WQt{TJozHi6?0<1@MRRLQ(=!bdWlM4s6EBs0Qt%%%48*el delta 2318 zcmYM!eN5F=9LMo*JP6W-;F8Eg*iRu`X?48`Bi%qU#0@Q27HirZ9Zc|KA(wW|>s?V=5lOxp>^w-^Cp2BbbX{U>;6kHeSap zoJJ3`7_9ye;_YU>)lkrc>-o~aCe*+VoR2={<69WOIBKB@4B;deVN!YzU zvbL?oDr|K11DMJBc9=pM4~9?^49`3;JBteB8!W`1P!mm~7Dy-jIT%EmtN;~ADJoN| zP&;3P>i;BagPTzqeF1Y>-(I1RgneqjBdAjtMh!fTn(z};fM=ZFq59vzg_uHm?!Yos zrYc;0HPXeNaP6B>0k@;Cv)JhxUPCQ>5EbEJ)Q*Qx3&&9d&!O(hBq}r4@e!QMAnkY^ zmf}WKfG;6k>>w&*$59zSsr)OlxN8`99nPTIFQO)#LLJ4=sDN&|=X$6N1yB>`VKNq@ zHnPw?FGDRDLiMY3_3AA0uLfVgdM2Nyod_qb<`2`qIPl=m4Q>Jh0dYIUBo-_ z66(_a=Gv1v7p;?t#BO=cQlEk*4x=Kh#6`HuwLgoBIO^Q)+==SnjS657DzJU-c^_)Q zV@M2k($&XMnf%PP`;!!OYZJ)FZthMqh6~noH=uBr+x|-U>>hT2+L6m zKIiJYQ47A0`oTGm_uw2lseLJ`e=T1Dz5kmi=(UQX0_j8rZ~!$yziYpO)ztsOrC83k z%drJDaUZV75hOV_jXKgG4~fARIV-WA`eW#aDfCm=h+pBOcrW?UCG5bv@lDj3k02kL za8998{s*dmKIf%{R-yuIM2+vpCHM|%qZhCiFBOvi1`0)NyC2)J1k-r8N^uEtI@W;8 za0}{E_M&$7HY%|9P;bLWs0BYq^}mV=ESHO*BdBn0LT&uzVt;ml4`|TDU!s0MzDC{V zZ&3?fL8bH>s^2Ztg?Ac z_sd$5)3DvBfxW2Io0?02J?MjcN6hxli+T0%PX!AO^d7Z7%9bRjsc?%7Z(H{ci$r%sb9}an; z(28XhJp, 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 a1ee00c6cc3ead398af08dd45d2dd2b65934fb39..bb9aaa218100eddd84950dfb040a10b3a2c697c2 100644 GIT binary patch delta 29 lcmX>&lkwn8#tnTsd?AV1sl^$Y3f}&{o{^55=jf;^006E93Zei2 delta 29 lcmX>&lkwn8#tnTseBSxFnU#qOA&J?k#Tl8K=jf;^006S~3qk+@ 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 088eab27283463ec56f7dcd77984318b847347dc..1094720f7714f3b1efb363b6c568ecd715925d4f 100644 GIT binary patch delta 6089 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 Ojr!WH>e|?#w*Ld|*}n_` delta 6276 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 XrJ{, 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 2acd04c3b452b64110d5111c9f1c640a2527009a..ff1de30578dc0aea6d466502571199de1650ca87 100644 GIT binary patch delta 12217 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 jskpRI, 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 b6544a1887a257d7a2f499868c18579e0676529d..966e13a3d137391d4904735dce56eb0236e1a166 100644 GIT binary patch delta 27 icmZ4Fu*hM, 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 810b2d1ae3746af829ca4c80af194a41aadede78..5f153fe23e6284e908fb9d6f725577f50fbedf63 100644 GIT binary patch delta 22 dcmdnn#JIPKaf6jSySajaft8`fW=HuyiU3u$2O9tY delta 22 dcmdnn#JIPKaf6jSyMcm%ft8`zW=HuyiU3tr2ND1P 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 d7b01c7a3a419fa8a0979fe1739ab978e8f23237..8c58ed6ec715a43a2d4031d23edb4f6a6183859c 100644 GIT binary patch delta 23 ecmbOrGeKs, 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 10b88af61cd5ca3959a96e7dd3f70ce855241c0d..fad09d0da4337a7534bed0625fac2547ce680b36 100644 GIT binary patch delta 11588 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 delta 11768 zcmY+~3wX};|Htv~tsU%SW(S*Xc5m3m4mLB)ww%UhXDh?(h9Myg!Hg-hFlNg2#`)c(|(T zc)V!w&;A;g6@@dy6#d^nKO|e$(+eb`merB^pVKXC0&!x7WtHJ8 z7=SgKTb3t=VH1qPg_w`IcpO_=mdgssw5-llbi+3IBF5n{^ugO$6Kk}vtVZaE8fZGk zV0Vng3RH*BVK6SiAY6yF@nckb-=ZIWkHPeBoud#&#Vyo>wHQ_{j6o-+q8jRfdSel) zp>q56DOgDS5~`gmwhy#2aXnPK=~x%rV>k{#fBLs3QqYL2upz#HjK$iHn&BT9iM6xL z>&dvCxEGRb%dfQ=SR3>v?uyDpA+kDFf7^MOPy7jLAfDOezYc|H3M{9UhU%yYwIq+> zQv3pk;gB553dKFB0e)}CwOCLmaYIyQI@GnjGBE%va5|Dz>k|57Q+AH_ zNDlg8H&lH;Ou=GI#Kq`~AEP?{(vDBsub;H~VP{yG-%6qKr#H~@1{8Ci1>|z+Pqm(O8qX6Y5y@Kn!>&Qa#kWR7UMA+wMmCzDXzh07+A>3!S<+oU_L6Ndu-35+IRFeM)W5C)2K+NA{f_W zE!>5J@jKKEk{>ZMZI4QMAqL`5tb^n1_z7%CycpHqHq`U`QJFr8%EV<eh5T8)M%L#+RF3XQ1v0@d&poP++4n)CbuYUY1n0)`AVaSm#; z4Mo+jL!Ilxn2R^CB{nNEOEMal5m({}3>;=zeO;=cFd6sb1K44>Iga`0B<_aFP&sPN zR$?S>L(Tjss-s(&gH35&sV+n9g)dM`bP#o{PoR!-HM-BgA9)I;A_~98W~c`4;#}-A z(!Aj;s^eOt%%*ID+B4~>4sz|dqaF7`?S=lR)DOdX_&&DL^Cje8H`ik&=KQWlHCT<> zOqVel@1ssbbg9|JX_!Ua4(s6z^uZ;lHi4{n)ts|q!eZZ%bhFF0SxER&YJE)m|gBsXHjKMqD4kO2!T|XF8h_|6S zzKBui$x+h#TyYd)DYQh*q(6G%^XQK+q0a9b^v3O|4D7)c_+QM%wDIONl%e9S*cz{6 zXH1!3mTWTS6K_P8!e!ky1uJQyxzUDTa~>#1rF0c)#M|xoICdbuifSmm(yZw;RE9R7 zp8o=ssdE^Pj!7m1^)Q$?3+w3o7f`56#ZU~vsi?JIfVsF8YvT!}rhlsw1t*R`4d5xPi_0(!H=!E(8bk30)v*D;2mtcRKidx&l zn2NP#n3U#XJ>o&A`YEV()?yN#wqx&^WzAApQ`Qkwd5@_!C>2TH3=d3fje&usfzd zZq~L6HGpSPOYkZxwHxgE)2I|)!vJjXgt_6;F@tyr=Hl}hg$I#?W?jVu9Qvdgi0c^& z+9caC9e+mc;*h6IgLxQBJRUW}#i%9Ogv!WwsE#h7QlId&X}A#k5I<>q8kOm0bIe~p zRp_bne}sb0<4IHouA)+u^9;8kmZNt4QrmZI_hK~lCs8xJh3Od6N8E|J89nBiV;O`kiE}UxD=`t5q6WCz zwi=bWyQt^F=aT{Yx3Vc{Q?)~_X@A>=7(%=kHINgSjrY+DvlkfKqZ)h&HM278j0^48 zzsCl|)u@ToSZMyR@kLiA6+P^Vr_h&pA9~<1^v6@Ez3~ew0}+eN*Y8I$pLi8E!po@R zR{J^AVH4Z#m`wcyR0dwh6x{I~`B$ngQIUsr{$mEv7d7HxsMnvisTA#Ld|qL z2H=mV0bE7R@GdH2jbAVWYJtkwqp12d*aSDB+CAfROXj0S@wG?Go2d7{t z&c$F{VaHoAka!>Jxl^dUauv0wLYA0JBx7^pbPU0fsEN2{P*6%&;&6NmwTAvnO?^E2 z5vO1RW?^eALT#p3QO9pJY5;ps12~GB=^Z}x0XT}728qA;~>_@*p=pHY>QdMqcIy-+x0)8_JHpyllnTSnKr_3>}Fex8u%>K zK$l?@Zd^tF_29QuD1{eMYiPY;c5kq45*~GsN?ecOYxrrc2ES^p<@gbAdz%j^{BoW7 zkvVIF`NQQatVeT&@0iV8fm-58$f{bez2h>UMy=m9Un~}&cIgRx7}MS}7sV6kL%h~@ zBWiDagzDfTMx$e+`MMs1TFN}sgt}lL4o2Mr<*4?iyD0ckcoOU4bEpR2!XVs>dgC$F z9=KrF`@L`OhiKGVCZhIAI!?n!(TOKf8U6>=e()yKZW1cvu3QRQi@q3um8f0&I4V_3 zunq3SMEn;ukc7?V3rPX`lKPq0l=?Ya%!EEf?Tx+Yh2LNYJZu~Gf%_L0mo+OZq~jVb|M~&%FtHSl6-~@@F*7GZPZLVePjk+fGvqjQ0=Zjt^Ixs z!IKzC|JF4MO0Dk>GqMb1lMjA?iUwbs#}n+8*` zKJi%8j25C&{U&@ay-5>L?0e)|L2XzW!zTrAXS0)8*o-L?N z_cLlKZelEU-EV%JDn~8Fd8~~Y-KJ}ZVu`nP6MP{+$~Eq;JX)u3bMxJJ7d{Nlc^6dnfM@% zWe?m#&8+;i>97i&#Lu86_%;UNX4G?^;{ZHyn*2XXA>#+r@nXy+{uFc2I%7J@#a4u) zaS*qL#q-M?P7xDQYQKV_yt*{bYWj9D_ZmIEZ?K^Q<|y z9dQ+LDGovZpUss#22+S%#3bB{%Fyq2-0GYe$O!B}{XERV1E|yFbDlc{U3DmECg-s? z_Pb!dK)i!`FyW#}T^ed&?J*ZeVFa$h7~F+%_#?K(8o!vY^&PO7coAwTZldms`^eI} zEZ<*EgJGx!dt($n6^ZjBKHlu&*TMFf9{cb*9D{wU7Rvd=0f0(s?5=RklLfsej{xqMKnHWku z74vW*Y9L3@4}Zs0yn|ZmCfCh}({gmBQ*n}lj)mV}#`>rR(@`DeqfWyxY>KaA13Z8U z_!nw#MBXsZx5XslfjAiF;Ny4!+hNH~^S*UA$$vBzhpC9gKWyv#ZD!USy{Mmp0XPfw z{Crf3*P)hb6L!TvuqWo+G8fJQRD2D4V4K@!?H6Hp)$4aYjWGAWro&e-pST)>G5#O3 zn_HuH_YBl-Uyjg-ggd_F|WI3X_{anaVHmrdKAWD7|z8g zT#1pm6I#(Osqs-T!;1X18k2+QA<*Ie(1{is3rOWwRFc&0|*arxW9f6L1l0~F2*kd94_}v2J%O|cK2-5 zX89b|z!lr3fe!cPntpY2HVvntE|_kp_b79g+V!(h zdulCa;X#*O;T!63ADiZ=8J3|sUV(b>2TaE>{{IV|+s^nf7NQ2U7B$mPQTK&UU6Y}< zm_j@fo%jOkzWD&_qw63Ao#)@t6QjaSO5;!i=!hD?Y*c1;pqApR?kT;`+hiRq|M z!EMM4tY1;5AB?HQNvL~bfNdGJCZ2`L;C9r+zQQuRhaosRj`OdXyC`Uc+fWaF zf_Zoyb-}c3;BbFG=#P41neA-Uo>*eL0rfrNQ*`1n)ZY3VHGu{V9o7SwgBoDlhMa$G zk{ML!*epk-^m81K`!NC^Y~*l%hwF!$(J<7e9FN*u>rvkiZebL9#+zLphnd8=s8cl& zm9aN*93GE%nO&TpU^d?Z)Xn!TYE5Gj&6*~nI&OtJ75UfnRkKl<*@Ie=YSi;Czf^NPGEk`*j4?PLy>SET;@N^~=pw3t_@-uH zh1i66GU}pPiMn78pq{&ox}fT&na!Jl+U#wS)8w*BDd_w8n;4Amqt^U$)D8C|s=;RI zrojSiOFSJ1;||msM>I2^jy+J%4@6C9GHL*8P?_C>4e%6(Y7zdmD?&0%%3Gm!{a{o> zF1vmiDl@w>Hh+|St6|NO;-V2{r4_}Sm-l+xBXeYFMd`$n;t|Qtkz*%SjBqxZ=p0ux zsyK0CV`q6$U-t`kk((2gKWalL3sL{ohd)HU|zb=a1&y1T? jSu(oVSxz@4<0ceSu5cDR$MEhklZqy!ZoYH8#-RTJNCxHB 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 80330e5fb43e5bdec59a67933100cb20f0e00aef..30431eb28b64185c9bdc11ad398c17ab1ac0d76b 100644 GIT binary patch delta 23 fcmccMdBJnTX(28XT?1nU0|P5V^UYU, 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 2b3a3b61af485db326724fff40578d40a8c2f4b2..3533e0b811cb9451d61e213df37eea150f157cef 100644 GIT binary patch delta 21 ccmX@ca*Sm{8<&Z$fw6*tft8{8#tGXP0ZG*clK=n! delta 21 ccmX@ca*Sm{8<(-Jk-36_ft8`f#tGXP0ZI@CnE(I) 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 0eecee833ac5c4b216f884fb278a4f5c646382a7..b0a664dbb528fc2b2f6fdea1b3e9515c0744da09 100644 GIT binary patch delta 2238 zcmYM!e`r=!7{Kwf_HHicY|i~~n(H;UXtZ?B4aeJ$nX#-O#5CSPQW7ba7)UV&I^OaR z*N+*|i+?OFbj1ubS`0NS^p6!4#fS_^up0GGB?O8}SWw?@KG3+kpL@&b{xU zuIbLgk2RUSiN7KKZ{&Y{#@7FT!xbr&(cFXAV=>xq;vCv<<6Jz7_4p-L<22633z$V8 zcKjl&#O26QNIjf=@B#F}jo5(OaUQ;evv3q$=zVO*NnC)JunwzdUJLM+upL=Dy&N5T(CQyV9~?s`97h8@7JiLR@G~yLD|iFWqfA!nR!+9NkXxxY z`q!cXKZb6_Q&_NL2Ny298~-Z}n(+v_@F+U&L-ZY)#8o(rX1bV%ny~{7ERWnuThU4l z;0!FF0S!gFSVjFEu#b*f9E}0T(TOL~(te9>$scH7|DY39Fvv>PqVqIiDYl>qwZ{D= zXaL>lxRudfJ)8PF;Tk#?VjntTKU$*a(S=?|x8f}{vv<%+e1I-Ag+6y0P2>mk<-HjF zmF$P>)FH8_rm(HRg%jt{2v_3Gcz^V7MI+uG4un4E_}yp#ucCn!NK>eNQcRGCAFQXIwjRsJ{(^`oJQiqOP80}^>pf>cUxGUOubis}2 zLeHUFu?t=AMQp)hfeRNrflhQ1eR)1dGddIfzl9gWztAnp@NGJA9UABYT#7Bx{|FlJ zqtSjM+=3=lcqRt)qYDp4dl(ICGRm+e7=BK;3aH3xHZC-~ioSzt}=*vvZsybgfv-9@$<=OW3+_DuDC37y9P1H2( GE&UhZp|&aj delta 2308 zcmYM!eN2^A9Ki8IT#!(SP)Q`_EwrVpc?mOXm4>}YtaN509R2}vOXNxpY$I3Qg{}8L zq)lduY{eF#wFdOEYHEKdR<5~XS*a_k%~qS`a<#eE%lB(%lU?rTIp;agIltfUoaas~ z9K1gJZAoH#;O|-fFXz88Ve7(QUqJ|YG9P z74M7fmvAcWT{wyL!w?rvFdT0jMg#d0XW=Pyq8!3@fkMp3>By~6js|iSTB#Z|^X2IH zdNjc%bm1;Ek*Dz@)(<;l$8NOx!{~$Wq7#0E1~?WyiB9l4UV-_P=Muact<>V!z5^K& z?vMRVXu$30Ry>MXJ6_fA;v8Iy2H1@Z z3B72=25=JYK?56^O8xEF9|w%#blRWA0Y9J<|B9CQZ**(Q=rq9j=tR|M#g?E8)nYEL zL=#&b?>C_9twYDP6;XdXI_Pl1Em(nD(FtEcOSKnWXdk*IpP-o?MJsX=UFaP8+&^d{ z1?-E5xB~58gs!s`$tBcg<3&9>aT*P%4X?z`*x!pr+!q~)?m@>7qXE2+2DU%mKY}j! z1rk#@5!=6@mCT-vHxjfg@ie3>EI=n*f-ZbJmSJ6Nr_qXJ(9F8fjJnb1wxJ7e#}9Hs z=tsAtq2&MZYmtPr;UO-#7d9fF@C08Tx*jx;L3HBxuo4f&{-4o9c@7OA!HKivMd)*t z=hpX0jR`{~$Vk z1G)u|qk(m!XX|<76Snbn4Zen19~kGt(w;)!>q63Ufw}0`q|i#-7W-F3*B~*5G+Np% zXok-qpU@NAucMV2LFYY!R^(VI_4m;INykDgA$M(FvEK0W6QMLIY_;$F;>0gRwo126P;Ky?#VXdKNtc9vm~9fpmpR zblfdyLia>hA)ips7lF\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 e94326f1a723f29a4c6224263c4645fd1d07c040..cd058dd01a52bd65a6eec1e7b20098e5f8fdff1b 100644 GIT binary patch delta 21 ccmZo=ZDpOXh08?Oz*xb+z{=2k, 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 85649fc685f0c48f616ec4baef200fc354221a35..ddbc47aca80f14da318ee6f06c59b305f5200d9d 100644 GIT binary patch delta 21 ccmaFP{G5408<&Z$fw6*tft8{8#tGq!08SYObN~PV delta 21 ccmaFP{G5408<(-Jk-36_ft8`f#tGq!08Uf}dH?_b 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 d456ba9c703f469a7b407a79ef7ccb7603745dd1..9f79c40fa6a1c491f1dd7e5222032f8485240b30 100644 GIT binary patch delta 22 ecmex=lKKBh<_)~H?B)sv23Cd^n?-70rvm_PZ3xH! delta 22 ecmex=lKKBh<_)~H>;?)323Ce, 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 f1e1ec0563387296ea500dda657a17ae6155455d..d946f388478ffb5128a43520204abae9e82d459a 100644 GIT binary patch delta 23 fcmcbpcTsP{d|oaST?1nU0|P5V^UW)HS8xIVV5A3S delta 23 fcmcbpcTsP{d|obNT_bY^0|P5Vi_I%}S8xIVVC4sE 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 a7fc14be9e19c49590db75c6226f32b345469e0e..d8b9f53f1a69e620d5e53444a920b65242497b38 100644 GIT binary patch delta 18 ZcmaFL{FHe@C%d_Vfq|8w#l{Jti~v2w1>yhz delta 18 ZcmaFL{FHe@C%b`yfq|8w*~ST>i~v1u1=#=q 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 663b8739545a47342be38ae2fbe9adfcd8338134..5d7a7c499fa6330da57df1915572a31e927d3d60 100644 GIT binary patch delta 5644 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 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 cdb7b8b95a3d1ea0c0cf2934629ead459f5faa6b..91c58037328637fb3da739d7ceced2cd1c3fed2c 100644 GIT binary patch delta 21 ccmey&{F!+|8<&Z$fw6*tft8{8#tF%c08kMIm;e9( delta 21 ccmey&{F!+|8<(-Jk%5ANft8`z#tF%c08jM>l>h($ 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 9bfc0323fb77da49e88a609a1fdf6a0797483a18..7e86faf4cf0a33bd7d8acab78f80d36e3452f246 100644 GIT binary patch delta 21 ccmZo-X=0hs#$}>wV60$ZU}b2&aY7Lz06wh+#{d8T delta 21 ccmZo-X=0hs#$~K)WUgRfU}b2raY7Lz06ypi%>V!Z 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 ec0c6f30d803a96f30d3b7ad38b84f0dbecc2e8b..bd83992267bd4f65d923c2a0cdbe25b6eea887d5 100644 GIT binary patch delta 8040 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 delta 8198 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 diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 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"